Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dr5hn/simple-crud
Create, Read, Update and Delete Using React JS with PHP, MySql
https://github.com/dr5hn/simple-crud
babel bootstrap crud css jquery mysql php react
Last synced: 1 day ago
JSON representation
Create, Read, Update and Delete Using React JS with PHP, MySql
- Host: GitHub
- URL: https://github.com/dr5hn/simple-crud
- Owner: dr5hn
- Created: 2017-08-13T17:17:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-09T07:11:14.000Z (about 6 years ago)
- Last Synced: 2024-11-10T22:40:52.291Z (4 days ago)
- Topics: babel, bootstrap, crud, css, jquery, mysql, php, react
- Language: JavaScript
- Homepage: http://www.webgeeks.in
- Size: 24.4 KB
- Stars: 14
- Watchers: 5
- Forks: 17
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# 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 !!