Skip to content

PHP MySQL CRUD Application using jQuery Ajax and Bootstrap

Notifications You must be signed in to change notification settings

pankajibn/php-crud-using-ajax

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP PDO CRUD with ajax jQuery and Bootstrap

PHP MySQL CRUD Application using jQuery Ajax and Bootstrap

  • git clone the repository

    Project setup

  • Rename your project directory to "phpcrudajax"

    Create Database:

  • create database name "playersdb"

  • create table using given below sql statement

CREATE TABLE `players` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `pname` varchar(50) NOT NULL,
 `email` varchar(100) NOT NULL,
 `phone` varchar(15) NOT NULL,
 `photo` varchar(100) NOT NULL,
 `status` enum('1','0') NOT NULL DEFAULT '1',
 PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8

Run the Project

Run the localhost (Apache service) point to the:

http://localhost/phpcrudajax

About

PHP MySQL CRUD Application using jQuery Ajax and Bootstrap

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published