################### CodeIgniter with React Sample CRUD ###################
In this Sample we use CodeIgniter API in Back-end and ReactJs in Front-end to create sample CRUD application. ################### How to Start ################### 1.create my sql db and import db.sql in that
2.change /application/config/config.php
$config['base_url'] = 'http://127.0.0.1/YOUR_CODE_URL/';
3.change /application/config/database.php
'hostname' => 'localhost',
'username' => 'database-user-name',
'password' => 'database-user-pass',
'database' => 'database-name',
2 .install node go to /assets/my-app directory and run
npm install
3.after complete the installtion run
npm start
in my-app directory
################### What is CodeIgniter ###################
CodeIgniter is an Application Development Framework - a toolkit - for people who build web sites using PHP. Its goal is to enable you to develop projects much faster than you could if you were writing code from scratch, by providing a rich set of libraries for commonly needed tasks, as well as a simple interface and logical structure to access these libraries. CodeIgniter lets you creatively focus on your project by minimizing the amount of code needed for a given task.
################### Report security issues to mel nasservb@gmail.com