eMonk Posted October 30, 2011 Share Posted October 30, 2011 Can anyone explain what "of course you'll need to propagate the initial seed in the page requests" means in the following link? http://stackoverflow.com/questions/4192284/random-values-in-mysql-query-with-pagination Quote Link to comment https://forums.phpfreaks.com/topic/250132-random-pagination-query/ Share on other sites More sharing options...
mika Posted October 31, 2011 Share Posted October 31, 2011 It means you'll have to pass the initial seed to every page where it is needed, the example uses $_GET, include the initial seed in your URLs: <a href="somepage.php?paginationRandSeed=<?php echo $paginationRandSeed;?>">My link</a> Quote Link to comment https://forums.phpfreaks.com/topic/250132-random-pagination-query/#findComment-1283681 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.