How would you go about getting whatever data somewhere in the middle of your MySQL database and print starting from this point and going down the list further instead of starting at the very top?
So far I've got:
$row = mysql_fetch_array($result);
Where do I go from here? I'm completely clueless from this point. Thanks to whoever can help.