piet bierbuik Posted August 23, 2006 Share Posted August 23, 2006 hi peoplei have a script that retrieve all names form the database but the list is getting to big (over 40)i would like to create a page that splits up those 40 results.so after 10 results you can click next to the next 10 results. can someone modify this script for me THX piet[code]name.php<?php$sql = "SELECT * FROM database";$result = mysql_query($sql);while ($rij = mysql_fetch_array($result)){echo ucfirst($rij['naam']); <BR />}?>[/code] Link to comment https://forums.phpfreaks.com/topic/18460-after-10-results-an-other-page/ Share on other sites More sharing options...
Caesar Posted August 23, 2006 Share Posted August 23, 2006 Any chance we can get an English translation? :-P Link to comment https://forums.phpfreaks.com/topic/18460-after-10-results-an-other-page/#findComment-79415 Share on other sites More sharing options...
piet bierbuik Posted August 23, 2006 Author Share Posted August 23, 2006 sry done :D Link to comment https://forums.phpfreaks.com/topic/18460-after-10-results-an-other-page/#findComment-79417 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.