Hi, I am using the LIMIT syntax in my PHP script and Have a question.
Here is a snippet of code:
<?php
$query = "SELECT * FROM newnews ORDER BY date DESC LIMIT 4";
?>
This code works, but how would I make it so it skips the first row and only selects the other 3? Thanks for your help. 😃