This example illustrates how to execute LIMIT operator of mysql in PHP.
In this example, we have created a limit.php page, in which we execute a query with LIMIT operator. In the LIMIT operator we put minimum and maximum limit of the table data. For example, the LIMIT 0,5 retrieves the row starting from row number 0 (the first one) to a maximum of 5 rows.
Table: emp

Source Code of limit.php
<?php
|
Output:

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: PHP SQL Limit
Post your Comment