An open API service indexing awesome lists of open source software.

https://github.com/mahanteshkumbar/basic-php-crud-operations-pdo

Basic Crud opertaion usin PHP PDO
https://github.com/mahanteshkumbar/basic-php-crud-operations-pdo

class crud-application database object-oriented-programming pdo php php-crud simple

Last synced: about 1 month ago
JSON representation

Basic Crud opertaion usin PHP PDO

Awesome Lists containing this project

README

        

# basic-php-crud-operations-pdo
Basic Crud opertaion usin PHP PDO

Clone project into your localhost(www) directory and run the project

http://localhost/basic-php-crud-operations-pdo

Create database 'dbexample' even you can configure your own database name in database.php file.

create table:

CREATE TABLE customers (

id int NOT NULL AUTO_INCREMENT,

name varchar(255) NOT NULL,

PRIMARY KEY (ID)

);