ryanmetzler3 Posted September 22, 2013 Share Posted September 22, 2013 I have a site that has an area where you can page through search results. I have 38 pages of results so I do not just want 1-38 at bottom. How can you go about showing the links for 1-10. Then if they click "next" on page 10 it will show 11-20 etc? I have not been able to find much online about this because it is hard to describe in a search engine. Quote Link to comment https://forums.phpfreaks.com/topic/282354-select-from-pages-1-10-then-11-20-etc/ Share on other sites More sharing options...
Psycho Posted September 22, 2013 Share Posted September 22, 2013 Simpe math. I assume you have a variable called $page (or something like it) $startLink = CEIL($page / 10); for($link=$startLink; $link <=$startLink+10; $link++) { //Insert code to create the links using $link } Quote Link to comment https://forums.phpfreaks.com/topic/282354-select-from-pages-1-10-then-11-20-etc/#findComment-1450620 Share on other sites More sharing options...
.josh Posted September 22, 2013 Share Posted September 22, 2013 The search term you want to use is "pagination" Quote Link to comment https://forums.phpfreaks.com/topic/282354-select-from-pages-1-10-then-11-20-etc/#findComment-1450737 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.