Skip to content

Instantly share code, notes, and snippets.

@013
Created January 22, 2014 16:33
Show Gist options
  • Save 013/8561984 to your computer and use it in GitHub Desktop.
Save 013/8561984 to your computer and use it in GitHub Desktop.
<?php
$pages = 20;
$current_page = (int) $_GET['p'];
if ($current_page > 3) {
echo "1 ... ";
}
for($i=$current_page-3;$i<=$current_page+3;$i++) {
if ($i < 0) {
$i = 0;
}
if ($i > $pages) {
break;
}
if ($i == $current_page) {
echo "[".$i."]" . " ";
} else {
echo $i . " ";
}
}
if ($current_page < $pages-3) {
echo " ... ".$pages;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment