Pages: ";
$s=1;
for ($i=1; $i<=$rowsmax; $i+=$newsmax)
{
//echo "$QUERY_STRING ";
//echo ereg("n",$QUERY_STRING);
if (($s-1)==$n) { $npage=$s; $page .= " ".$s." "; }
else $page .= " ".$s." ";
$s++;
}
$page .= " ";
//$n--;
$nn=$n;
//echo $n;
if ($n>=0) { $n*=$newsmax; $nn=$n; }
$sql = "SELECT * FROM links WHERE cat=$categ_l_a ORDER BY id limit $nn, $newsmax";
//echo $sql;
$links_result = mysql_query ($sql);
while ($links_row = mysql_fetch_assoc ($links_result))
{
if ($links_row['url']!='') echo "{$links_row['urltitle']} {$links_row['opis']}
";
}
if ($rowsmax>$newsmax) echo "$page";
?>
|