Skip to content

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

Notifications You must be signed in to change notification settings

aneudyp/Simple-CRUD

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 51.3%
  • PHP 43.3%
  • HTML 5.0%
  • CSS 0.4%