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…
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…
Ever wondered how to add those eye-catching images to your Laravel application? Images play an important role in captivating your users, but managing uploads can feel daunting. Don’t worry, enthusiastic…
There are a number of open source libraries available online which can be used to generate a Quick Response(QR) Code. A good open source library for QR code generation in…
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,…
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…
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…
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…