How would I do to bold the page I'm on and make it unclickable? In the link at the bottom? If I'm on page 3 for example: 1 2 3 4
This script:
// how many rows to show per page 
$max = 15;
$page = $_GET['page'];
// if $page is empty, set page number to 1
if (empty($page)) $page = 1;
$limit = ($page - 1) * $max; 
$sql = mysql_query("SELECT * FROM threads LIMIT $limit, $max");
$totalres = mysql_result(mysql_query("SELECT COUNT(id) AS tot FROM threads"),0);    
// calculate
$totalpages = ceil($totalres / $max); 
while ($thread = mysql_fetch_assoc($sql)) {
 echo $thread['title'];
}
for ($i = 1; $i <= $totalpages; $i++) { 
 echo '<a href='test.php?page=$i'>$i</a>';
}
Thanks in advance