jd2007 Posted July 11, 2007 Share Posted July 11, 2007 1. How to select the first 6 rows in a mysql table ? 2. How to select rows 7-13 in a mysql table ? 3. How to refresh a php page ? what code to use ? Link to comment https://forums.phpfreaks.com/topic/59422-phpmysql-help/ Share on other sites More sharing options...
Yesideez Posted July 11, 2007 Share Posted July 11, 2007 1. SELECT rows FROM table LIMIT 6 2. SELECT rows FROM table LIMIT 7,7 3. You can use a refresh header but if you've got output on the page already you'll get an error. The best way is to use a meta tag to refresh the page. Link to comment https://forums.phpfreaks.com/topic/59422-phpmysql-help/#findComment-295254 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.