PHP-Limit Data Selections From a MySQL Database PHP-Limit Data Selections From a MySQL Database 2015-08-31 jashliao Comments 0 Comment PHP-Limit Data Selections From a MySQL Database The SQL query below says “return only 10 records, start on record 16 (OFFSET 15)”: $sql = “SELECT * FROM Orders LIMIT 10 OFFSET 15”;