{"id":20455605,"url":"https://github.com/rdp77/codeigniter","last_synced_at":"2026-04-07T22:31:56.017Z","repository":{"id":103298712,"uuid":"275739261","full_name":"rdp77/codeigniter","owner":"rdp77","description":"Simple Program With CodeIgniter","archived":false,"fork":false,"pushed_at":"2020-10-05T06:30:41.000Z","size":4815,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-20T08:33:45.467Z","etag":null,"topics":["codeigniter","crud","css","html","javascript","mariadb","mysql","php","simple-app"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rdp77.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2020-06-29T05:30:47.000Z","updated_at":"2020-10-05T06:31:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"dec72718-aa6a-469a-85f3-d9879cde2f85","html_url":"https://github.com/rdp77/codeigniter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rdp77/codeigniter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdp77%2Fcodeigniter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdp77%2Fcodeigniter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdp77%2Fcodeigniter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdp77%2Fcodeigniter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rdp77","download_url":"https://codeload.github.com/rdp77/codeigniter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdp77%2Fcodeigniter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31532230,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["codeigniter","crud","css","html","javascript","mariadb","mysql","php","simple-app"],"created_at":"2024-11-15T11:19:19.891Z","updated_at":"2026-04-07T22:31:56.003Z","avatar_url":"https://github.com/rdp77.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple Program\n\nThis is a collection of simple programs built using Codeigniter as a php framework and using mariadb or mysql as a database, this program includes:\n\n- [Simple Program](#simple-program)\n\t- [Configuration Database](#configuration-database)\n\t- [Table Migrations](#table-migrations)\n\t\t- [Simple Navigation](#simple-navigation)\n\t\t- [Pattern](#pattern)\n\t\t- [Auth And Calculator](#auth-and-calculator)\n\t\t- [Around the Parallelogram](#around-the-parallelogram)\n\t\t- [SQL Query](#sql-query)\n\n## Configuration Database\n\nYou can set your own database naming along with a password that can be found in the directory `/application/config/database.php` and you can change it like the example below in **line 76**.\n\n```markdown\n$db['default'] = array(\n\t'dsn'\t=\u003e '',\n\t'hostname' =\u003e 'localhost', //Your hostname, use the default as a recommendation*\n\t'username' =\u003e '', //Username your database*\n\t'password' =\u003e '', //Password your database*\n\t'database' =\u003e '', //Name Database*\n\t'dbdriver' =\u003e 'mysqli', //Driver Database, use this settings if you are using mysql or mariadb*\n\t...\n);\n```\n\n## Table Migrations\n\nFor run migrations\n\n### Simple Navigation\n\n\u003cdiv style=\"text-align:center\"\u003e\u003cimg src=\"/docs/simple_navigation.png\" /\u003e\u003c/div\u003e\nMultiple navigation in header using controllers, you can see \u003ca href=\"/simple_navigation\"\u003ehere.\u003c/a\u003e\n\n### Pattern\n\n\u003cdiv style=\"text-align:center\"\u003e\u003cimg src=\"/docs/pattern.png\" /\u003e\u003c/div\u003e\nPassing data from the controllers then making the pattern like the image above, you can see \u003ca href=\"/pattern\"\u003ehere.\u003c/a\u003e\n\n### Auth And Calculator\n\n\u003cdiv style=\"text-align:center\"\u003e\u003cimg src=\"/docs/log_calc.png\" /\u003e\u003c/div\u003e\nProvide 2 simple functions, one as the login and logout method using a library from the Codeigniter framework, while the other one is a simple calculator or calculator. you can see \u003ca href=\"/log_calc\"\u003ehere.\u003c/a\u003e\n\n### Around the Parallelogram\n\n\u003cdiv style=\"text-align:center\"\u003e\u003cimg src=\"/docs/parallelogram.png\" /\u003e\u003c/div\u003e\nSimple app for counting from the circumference of a parallelogram, you can see \u003ca href=\"/parallelogram\"\u003ehere.\u003c/a\u003e\n\n### SQL Query\n\n\u003cdiv style=\"text-align:center\"\u003e\u003cimg src=\"/docs/parallelogram.png\" /\u003e\u003c/div\u003e\nSimple app for counting from the circumference of a parallelogram, you can see \u003ca href=\"/parallelogram\"\u003ehere.\u003c/a\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frdp77%2Fcodeigniter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frdp77%2Fcodeigniter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frdp77%2Fcodeigniter/lists"}