aneudyp / Simple-CRUD

Create, Read, Update and Delete Using React JS with PHP, MySql

Home Page:http://www.webgeeks.in

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple CRUD using PHP,MYSQL,REACT,BABLE,JQUERY,BOOTSTRAP

Getting Started

CRUD operations with PHP, MySQL, React, Babel, jQuery and Bootstrap.

What is React ? (in One Word)

React is only the V in MVC.

What will do what ?

PHP – will handle server side script.
MySQL – will store our data.
React – will make our UI fast and interactive.
Babel – will compile our JavaScript so we don’t have to wait for browser support.
jQuery – will do AJAX requests. React official docs shows jQuery examples.
Bootstrap – will make our UI look better.

Installation

Step 1 : Create Database

api_db (or Whatever_Name)

Step 2 : Import SQL file into Database

api_db.sql

Step 3 : Update Project Configuration Files

- api/config/core.php
Update following variables as per your server config
$home_url = "http://localhost/Simple-CRUD/";

- api/config/database.php
Update following variables as per your database config
$host = "localhost";
private $db_name = "api_db";
private $username = "root";
private $password = "mysql"; // If you're using xampp keep it blank

Step 4 : Go Live

http://localhost/Simple-CRUD

That's all Folks !!

About

Create, Read, Update and Delete Using React JS with PHP, MySql

http://www.webgeeks.in


Languages

Language:JavaScript 51.3%Language:PHP 43.3%Language:HTML 5.0%Language:CSS 0.4%