require("header.php");
require("connect.php");
?>
" width="100%" border="0" cellspacing="0" cellpadding="0">
|
Howtos
$result = mysql_query("select * from howtos order by datum desc");
$zeilenanzahl = mysql_num_rows($result);
if ($start==""){
$start=0;
}
$result = mysql_query("select * from howtos order by datum desc limit $start,$howtos_proseite");
while($row = mysql_fetch_array($result)){
?>
}
if ($zeilenanzahl>$howtos_proseite){
$dummy = $start-$howtos_proseite;
if ($start!=0)
{
Print "[<<] ";
} else { Print "[<<] ";}
$seiten=intval($zeilenanzahl/$howtos_proseite);
if($zeilenanzahl%$howtos_proseite)
{
$seiten++;
}
for ($i=1;$i<=$seiten;$i++)
{
$dummy=($i-1)*$howtos_proseite;
if ($dummy!=$start) {Print "[$i]";} else {Print"[$i]";}
}
$ende=$start+$howtos_proseite;
if ($ende<$zeilenanzahl)
{
Print " [>>]";
} else { Print " [>>]"; }
}
?>
|
require("footer.php"); ?>