mr_mind Posted December 10, 2007 Share Posted December 10, 2007 I want to know if it is possible to make a mysql_query start art a certain row in the database. this is kind of what i mean but i doubt it would work mysql_query("SELECT * FROM table WHERE id='" . $id . " START 10'); Basically to start at a certain number of rowser from the top It doesnt have to be a mysql_query it can be something else after the query Quote Link to comment https://forums.phpfreaks.com/topic/80969-mysql-start-at-row/ Share on other sites More sharing options...
jitesh Posted December 10, 2007 Share Posted December 10, 2007 Select * From table limit 25,10 Start From Record 26 (Retrive Rows From 26 to 35) Quote Link to comment https://forums.phpfreaks.com/topic/80969-mysql-start-at-row/#findComment-410748 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.