Aşağıdaki sayfandırma çalışıyor ancak cesur ve tıklanamayan geçerli sayfa, (hiç href) yapmaz
Ne yanlış?
$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=\"index.php?page=$i\">$i</a> ";
else
echo "<b>" . $i . " </b>";
}