https://github.com/rdp77/codeigniter
Simple Program With CodeIgniter
https://github.com/rdp77/codeigniter
codeigniter crud css html javascript mariadb mysql php simple-app
Last synced: 5 months ago
JSON representation
Simple Program With CodeIgniter
- Host: GitHub
- URL: https://github.com/rdp77/codeigniter
- Owner: rdp77
- Created: 2020-06-29T05:30:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-05T06:30:41.000Z (about 5 years ago)
- Last Synced: 2025-03-05T10:23:58.653Z (10 months ago)
- Topics: codeigniter, crud, css, html, javascript, mariadb, mysql, php, simple-app
- Language: HTML
- Homepage:
- Size: 4.59 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Program
This is a collection of simple programs built using Codeigniter as a php framework and using mariadb or mysql as a database, this program includes:
- [Simple Program](#simple-program)
- [Configuration Database](#configuration-database)
- [Table Migrations](#table-migrations)
- [Simple Navigation](#simple-navigation)
- [Pattern](#pattern)
- [Auth And Calculator](#auth-and-calculator)
- [Around the Parallelogram](#around-the-parallelogram)
- [SQL Query](#sql-query)
## Configuration Database
You 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**.
```markdown
$db['default'] = array(
'dsn' => '',
'hostname' => 'localhost', //Your hostname, use the default as a recommendation*
'username' => '', //Username your database*
'password' => '', //Password your database*
'database' => '', //Name Database*
'dbdriver' => 'mysqli', //Driver Database, use this settings if you are using mysql or mariadb*
...
);
```
## Table Migrations
For run migrations
### Simple Navigation
Multiple navigation in header using controllers, you can see here.
### Pattern
Passing data from the controllers then making the pattern like the image above, you can see here.
### Auth And Calculator
Provide 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 here.
### Around the Parallelogram
Simple app for counting from the circumference of a parallelogram, you can see here.
### SQL Query
Simple app for counting from the circumference of a parallelogram, you can see here.