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");? 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. 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 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
Archived
This topic is now archived and is closed to further replies.