Skip to content

Commit 4d564a4

Browse files
authored
Update README.md
1 parent f3ab469 commit 4d564a4

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@ PHP CRUD tutorial with PDO extension and MySQL
33
## Description
44
The PHP Data Objects (PDO) extension defines a consistent, lightweight interface for accessing databases in PHP. PDO extension provides a data-access abstraction layer, which means that you can use different databases using the same functions to queries and fetch data from the database.
55

6-
This PHP PDO example, implements a simple PHP CRUD operation, learning PDO connection, PDO insert, PDO select, PDO update, PDO delete query management. The example provides a simple Web view, add, edit, and delete functionality with PHP OOP using PDO MySQL.
6+
This PHP PDO example, implements a simple PHP CRUD operation, learning:
7+
* PDO connection
8+
* PDO insert
9+
* PDO select
10+
* PDO update
11+
* PDO delete
12+
The example provides a simple Web view, add, edit, and delete functionality with PHP OOP using PDO MySQL.
713

814
In this example script, we’ll fetch the users data from the database and display the user data list with add link, edit link, and delete link. By these links user can add new data to the database, update previously inserted data and delete the data from the database. We’ll use Object oriented approach to building the example script and bootstrap table structure for styling the list, form fields, and links.
915

0 commit comments

Comments
 (0)