nathanmaxsonadil Posted August 29, 2007 Share Posted August 29, 2007 is there any way to list from 100-200? Like mysql_query("SELECT * FROM tablename WHERE id='id' LIMIT 100-200");? Quote Link to comment https://forums.phpfreaks.com/topic/67247-solved-select-limit-100-200/ Share on other sites More sharing options...
BlueSkyIS Posted August 29, 2007 Share Posted August 29, 2007 close. mysql_query("SELECT * FROM tablename WHERE id='id' LIMIT 99,101"); .....except this will return the records in no particular order since you haven't defined and ORDER BY. Quote Link to comment https://forums.phpfreaks.com/topic/67247-solved-select-limit-100-200/#findComment-337317 Share on other sites More sharing options...
nathanmaxsonadil Posted August 29, 2007 Author Share Posted August 29, 2007 thanks soooo much Quote Link to comment https://forums.phpfreaks.com/topic/67247-solved-select-limit-100-200/#findComment-337318 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.