Skip to content

VeereshBS/CRUD

Repository files navigation

CRUD

CRUD

Application shows simple create delete and update items from the database.

Create Table using below query

CREATE TABLE IF NOT EXISTS items ( id int(10) unsigned NOT NULL AUTO_INCREMENT, title varchar(255) COLLATE utf8_unicode_ci NOT NULL, description text COLLATE utf8_unicode_ci NOT NULL, created_at timestamp NULL DEFAULT NULL, updated_at timestamp NULL DEFAULT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=63;

About

Simple CRUD operation using CodeIgniter

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages