jeiigfbldbk
New Member
The following pagination works but does not make the current page, bold and unclickable (no href)Whats wrong?\[code\]$totalcount = mysql_query("SELECT COUNT(*) as 'total' FROM $table");$row = mysql_fetch_assoc($totalcount);$pages = ceil($row['total'] / $perpage); for ($i = 1; $i <= $pages; $i++) { if ($i != $page) echo "<a href=http://stackoverflow.com/questions/2032914//"index.php?page=$i\">$i</a> "; else echo "<b>" . $i . " </b>"; }\[/code\]