Solar Posted July 5, 2012 Share Posted July 5, 2012 We have encountered an error that prevents us from showing this page. Please try again later. If the problem persists, please contact an administrator. Would anyone kindly have the bottom half of the script? or the whole script? I thought I had it saved somewhere... Bottom half meaning the pagination part. Where it echos first, previous, current, next, last hyperlinks. Quote Link to comment https://forums.phpfreaks.com/topic/265255-phpfreaks-basic-pagination/ Share on other sites More sharing options...
KevinM1 Posted July 5, 2012 Share Posted July 5, 2012 ...? What script? Whose script? What are you talking about? Quote Link to comment https://forums.phpfreaks.com/topic/265255-phpfreaks-basic-pagination/#findComment-1359359 Share on other sites More sharing options...
Solar Posted July 5, 2012 Author Share Posted July 5, 2012 http://www.phpfreaks.com/tutorial/basic-pagination Quote Link to comment https://forums.phpfreaks.com/topic/265255-phpfreaks-basic-pagination/#findComment-1359363 Share on other sites More sharing options...
Mahngiel Posted July 5, 2012 Share Posted July 5, 2012 It appears all of the tutorials are unavailable. Must be a side effect from the server issues last week Quote Link to comment https://forums.phpfreaks.com/topic/265255-phpfreaks-basic-pagination/#findComment-1359371 Share on other sites More sharing options...
Solar Posted July 5, 2012 Author Share Posted July 5, 2012 I was able to find some old files. /****** build the pagination links ******/ // range of num links to show $range = 3; // if not on page 1, don't show back links if ($currentpage > 1) { // show << link to go back to page 1 echo " <a href='{$_SERVER['PHP_SELF']}?currentpage=1'><<</a> "; // get previous page num $prevpage = $currentpage - 1; // show < link to go back to 1 page echo " <a href='{$_SERVER['PHP_SELF']}?currentpage=$prevpage'><</a> "; } // end if // loop to show links to range of pages around current page for ($x = ($currentpage - $range); $x < (($currentpage + $range) + 1); $x++) { // if it's a valid page number... if (($x > 0) && ($x <= $totalpages)) { // if we're on current page... if ($x == $currentpage) { // 'highlight' it but don't make a link echo " [<b>$x</b>] "; // if not current page... } else { // make it a link echo " <a href='{$_SERVER['PHP_SELF']}?currentpage=$x'>$x</a> "; } // end else } // end if } // end for // if not on last page, show forward and last page links if ($currentpage != $totalpages) { // get next page $nextpage = $currentpage + 1; // echo forward link for next page echo " <a href='{$_SERVER['PHP_SELF']}?currentpage=$nextpage'>></a> "; // echo forward link for lastpage echo " <a href='{$_SERVER['PHP_SELF']}?currentpage=$totalpages'>>></a> "; } // end if /****** end build pagination links ******/ I hope the issue gets fixed soon! Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/265255-phpfreaks-basic-pagination/#findComment-1359372 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.