An open API service indexing awesome lists of open source software.

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

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.