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
- Host: GitHub
- URL: https://github.com/mahanteshkumbar/basic-php-crud-operations-pdo
- Owner: Mahanteshkumbar
- Created: 2017-04-04T08:55:40.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-04T09:16:28.000Z (about 8 years ago)
- Last Synced: 2025-01-23T14:32:16.144Z (3 months ago)
- Topics: class, crud-application, database, object-oriented-programming, pdo, php, php-crud, simple
- Language: PHP
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# basic-php-crud-operations-pdo
Basic Crud opertaion usin PHP PDOClone 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)
);