Laravel Installation

Friends, before breaking the level it is important to know what a framework is ? Friends, framework is such a platform, it is such a medium that it is made…

0 Comments

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