{"id":20151900,"url":"https://github.com/mauricehandwerker/mo_php-login-register-system","last_synced_at":"2026-04-28T17:32:40.510Z","repository":{"id":170990102,"uuid":"494387807","full_name":"MauriceHandwerker/MO_PHP-Login-Register-System","owner":"MauriceHandwerker","description":"MO Login/Register System","archived":false,"fork":false,"pushed_at":"2022-05-30T11:07:13.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-04T00:45:20.161Z","etag":null,"topics":["css","html","login","pdo","pdo-php","php","register","sql","sytem","tool"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MauriceHandwerker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-05-20T08:44:02.000Z","updated_at":"2023-12-13T23:47:09.000Z","dependencies_parsed_at":"2023-07-22T02:44:47.134Z","dependency_job_id":null,"html_url":"https://github.com/MauriceHandwerker/MO_PHP-Login-Register-System","commit_stats":{"total_commits":7,"total_committers":3,"mean_commits":"2.3333333333333335","dds":0.4285714285714286,"last_synced_commit":"8e8e9d6a1b6b56d9bdfa27df228b4e54b56748b0"},"previous_names":["mauricehandwerker/mo_php-login-register-system"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/MauriceHandwerker/MO_PHP-Login-Register-System","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MauriceHandwerker%2FMO_PHP-Login-Register-System","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MauriceHandwerker%2FMO_PHP-Login-Register-System/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MauriceHandwerker%2FMO_PHP-Login-Register-System/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MauriceHandwerker%2FMO_PHP-Login-Register-System/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MauriceHandwerker","download_url":"https://codeload.github.com/MauriceHandwerker/MO_PHP-Login-Register-System/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MauriceHandwerker%2FMO_PHP-Login-Register-System/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32392293,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T14:34:11.604Z","status":"ssl_error","status_checked_at":"2026-04-28T14:32:37.009Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","html","login","pdo","pdo-php","php","register","sql","sytem","tool"],"created_at":"2024-11-13T23:07:54.570Z","updated_at":"2026-04-28T17:32:40.491Z","avatar_url":"https://github.com/MauriceHandwerker.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MO_PHP-Login/Register-System\n\nThe MO_PHP-Login/Register-System uses the \n\u003ca href=\"LICENSE\"\u003eApache 2.0 License\u003c/a\u003e\n\n\n## About MO_PHP-Login/Register-System\n\n### SQL Server\nThe MO_PHP-Login/Register-System is compatiple with :\n| driver      | Supported Databases |\n| ----------- | ----------- |\n| PDO_CUBRID      | Cubrid       |\n| PDO_DBLIB   | FreeTDS / Microsoft SQL Server / Sybase        |\n| PDO_FIREBIRD | Firebird |\n| PDO_IBM | IBM, DB2 |\n| PDO_INFORMIX | IBM / Informix Dynamic Server |\n| PDO_MYSQL\t| MySQL 3.x/4.x/5.x |\n| PDO_OCI\t| Oracle Call Interface |\n| PDO_ODBC\t| ODBC v3 (IBM DB2, unixODBC und win32 ODBC) |\n| PDO_PGSQL\t| PostgreSQL |\n| PDO_SQLITE\t| SQLite 3 und SQLite 2 |\n| PDO_SQLSRV\t| Microsoft SQL Server / SQL Azure |\n\n\u003cbr\u003e\n\u003cbr\u003e\n\n\n---\n\n## MO_PHP-Login/Register-System Set-up\n\n### Connect to SQL Server\n\u003e connect.php\n```php\n\u003c?php\n\n$servername = \"localhost\";\n$username = \"username\";\n$password = \"password\";\n$dbname = \"mo_login_system\";\ntry {\n\t$conn = new PDO(\"mysql:host=$servername;dbname=$dbname\", $username, $password);\n\t$conn-\u003esetAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);\n    } catch(PDOException $e) {\n\t\t\t\techo \"Error: \" . $e-\u003egetMessage();\n                $conn = NULL;\n\t}\n?\u003e\n```\nChange the veriables to your own.\nThe `$dbname` should stay the same if you are using the `setup.sql`.\n\n\n### Change SQL driver\n\u003e conect.php\n```php\n9 :   $conn = new PDO(\"pgsql:host=$servername;port=$port;dbname=$dbname\", $username, $password);\n```\nChange the `mysql` to the driver of your needs.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmauricehandwerker%2Fmo_php-login-register-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmauricehandwerker%2Fmo_php-login-register-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmauricehandwerker%2Fmo_php-login-register-system/lists"}