barrowvian Posted June 4, 2010 Share Posted June 4, 2010 Currently I have this; <?php // orders and displays the results randomly in rows of 16. $_num = 0; $result = mysql_query("SELECT image_link FROM adverts ORDER BY RAND()",$connection); while($row = mysql_fetch_array($result)){ echo $row['image_link'] . " "; $_num++; if ($_num == 16){ echo "<br />"; $_num = 0; } } ?> It simply queries my database at returns the results in a random order. Now what I am wanting to do is add pagination but still keep the display random. How would I go about doing this? I have been looking through the pagination tutorial here on php freaks and have the pagination working on its own, but now I am wanting to combine the two but have no idea what to do Quote Link to comment https://forums.phpfreaks.com/topic/203879-adding-pagination-to-a-random-display-of-data/ Share on other sites More sharing options...
F1Fan Posted June 4, 2010 Share Posted June 4, 2010 Here's a fairly simple pagination class file that I use all the time. It's simple, but it still gives you a page list, next page, previous page, etc., all from just an array, per page number, and current page number. [attachment deleted by admin] Quote Link to comment https://forums.phpfreaks.com/topic/203879-adding-pagination-to-a-random-display-of-data/#findComment-1067809 Share on other sites More sharing options...
barrowvian Posted June 4, 2010 Author Share Posted June 4, 2010 I have the pagination function working fine. Its combining it with my previously displayed code that is the problem. Im not sure how to integrate it with the pagination code found in the tutorials section. Quote Link to comment https://forums.phpfreaks.com/topic/203879-adding-pagination-to-a-random-display-of-data/#findComment-1067876 Share on other sites More sharing options...
F1Fan Posted June 4, 2010 Share Posted June 4, 2010 <?php $allRows = array(); $result = mysql_query("SELECT image_link FROM adverts ORDER BY RAND()",$connection); while($row = mysql_fetch_array($result)){ $allRows[] = $row; } // Now you can use $allRows with the pagination class ?> Quote Link to comment https://forums.phpfreaks.com/topic/203879-adding-pagination-to-a-random-display-of-data/#findComment-1067880 Share on other sites More sharing options...
barrowvian Posted June 4, 2010 Author Share Posted June 4, 2010 thank you for the help F1Fan. Got it working now Quote Link to comment https://forums.phpfreaks.com/topic/203879-adding-pagination-to-a-random-display-of-data/#findComment-1067899 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.