vote up 0 vote down star
1

How would I do so that the page I'm on wont be clickable?

$page = (isset($_GET['page']) && is_numeric($_GET['page']) ? (int) $_GET['page'] : 1);

$limit = ($page - 1) * 15; 

$sql = mysql_query("SELECT * FROM log LIMIT $limit, 15");

$totalres = mysql_result(mysql_query("SELECT COUNT(id) AS tot FROM log"),0);
$totalpages = ceil($totalres / 15);

for ($i = 1; $i <= $totalpages; $i++) {
  $pagination .= "<a href=\"$_SERVER[PHP_SELF]?page=$i\">$i</a> ";
}

<p><?php echo $pagination ?></p>

I'm not so good :P

Thanks!

flag
1  
thedailywtf.com/Articles/… - In all seriousness though, Pear::Pager might be worth looking into. – Thorarin Jul 26 at 12:02

3 Answers

vote up 3 vote down check
if ($i == $page)
  $pagination .= "$i ";
else
  $pagination .= "<a href=\"$_SERVER[PHP_SELF]?page=$i\">$i</a> ";
link|flag
1  
It would be better to use the $page variable defined earlier, instead of possibly unset or invalid $_GET['page'] – Thorarin Jul 26 at 12:12
You're absolutely right. – Kawa Jul 26 at 12:34
vote up 1 vote down

with an IF inside the FOR.

if ( $i != $page) {
//your code
} else { //same page
$pagination .= "&nbsp;" . $page . "&nbsp;"
}
link|flag
vote up 1 vote down

Just need to modify the for loop to check what the current page is.

for ($i = 1; $i <= $totalpages; $i++) 
{
    if ($i != $page)
        $pagination .= "<a href=\"$_SERVER[PHP_SELF]?page=$i\">$i</a> ";
    else
        $pagination .= " " . $i . " ";
}
link|flag
You need to change $i == $page to != or swap the two lines of code. – Thorarin Jul 26 at 12:11
fastest gun in the west ... not so much ;) ... Thanks – Cannonade Jul 26 at 12:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.