Last Inserted ID Using PHP

In the PHP MySQL insert chapter you've learnt MySQL automatically generate an unique ID for the AUTO_INCREMENT column each time you insert a new record or row into the table. However,…

0 Comments

Data Fetch Limit Using PHP

In PHP - MySQL the LIMIT clause is used with the SELECT statement to restrict the number of rows in the result set. The Limit Clause accepts one or two arguments…

0 Comments

Data Fetch Orderby Using PHP

The ORDER BY Clause can be used along with the SELECT statement to sort the data of specific fields in an ordered way. It is used to sort the result-set in ascending…

0 Comments

Data Update Using PHP

Data can be updated into MySQL tables by executing SQL UPDATE statement through PHP function mysqli_query. Below is a simple example to update records into MyGuests table. To update a record…

0 Comments

Data Delete Using PHP

Data can be deleted from MySQL tables by executing SQL DELETE statement through PHP function mysqli_query. Below is a simple example to delete records into MyGuests table. To delete a record…

0 Comments

Data Fetch Using PHP

Data can be fetched from MySQL tables by executing SQL SELECT statement through PHP function mysql_query. You have several options to fetch data from MySQL. The most frequently used option…

0 Comments

Data Insert Using PHP

Inserting Data into a MySQL Database Table Now that you've understood how to create database and tables in MySQL. In this tutorial you will learn how to execute SQL query…

0 Comments