1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
if (!@$_GET['limite_start']) $limite_start = 0; // si limite est vide on l'affecte 0
else $limite_start = $_GET['limite_start']; // sinon on l'affecte la nouvelle valeur
// $numero contient le numéro de page à afficher
if (!@$_GET['numero']) $numero = 1; // si numero est vide on l'affecte 1
else $numero = $_GET['numero'];
//......
$total=mysql_num_rows($req1);
$nbpages = ceil($total/10);
//.........
$limite_start=$limite_start+10;
if($numero==1)
{
$numero=$numero+1;
echo "Page 1/$nbpages";
echo"<a href=rech.php?limite_start=$limite_start&numero=$numero class=Style15 style=color:#F1F3F8> >></a>";
} |