bretonm2004
Messages postés319Date d'inscriptionvendredi 9 mai 2008StatutMembreDernière intervention30 août 2013
-
Modifié par bretonm2004 le 16/07/2010 à 20:51
bretonm2004
Messages postés319Date d'inscriptionvendredi 9 mai 2008StatutMembreDernière intervention30 août 2013
-
16 juil. 2010 à 20:51
Bonjour,
j'essaie de mettre en marche un moteur de recherche assez simple je crois mais ne sais pas comment my prendre quelqun aurrait bien l'obligeance de me donner un coup de main svp
voici mon script en gras c'est les criteres de recherche
mysql_connect('localhost', 'xxxxxxx', 'xxxxx');
mysql_select_db("xxxxxx");
$sql = "SELECT * FROM avendrepubliee ORDER BY id DESC LIMIT ".$debut.", ".$limit." ";
$req = mysql_query($sql) or die(mysql_error());
$count = mysql_result(mysql_query("SELECT count(*) FROM avendrepubliee"), 0);
// Compte le nombre de champ
$nav_page=true; // J'indique une variable vide, car si je ne le fais pas, j'ai des erreurs
if ($page>0)
{
$precedent=$page-1;
$nav_page.='<a href="rechercheavendre.php?page='.$precedent.'">PRECEDENT</a> ';
}
$i=0; // On initialise $i => Page
$j=1; // On initialise $j => La page afficher
if($count>$limit)
{
while($i<ceil($count/$limit))
{
// C'est une page avant ou après la position actuel
if($i!=$page){$nav_page.='<a href="rechercheavendre.php?page='.$i.'">'.$j.'</a>';}
// C'est la page en cours
else { $nav_page.=" <b>".$j."</b> ";}
$i++;$j++;
}
}
if($debut+$limit<$count)
{
$suivant=$page+1;
$nav_page.=' <a href="rechercheavendre.php?page='.$suivant.'">SUIVANT</a>';
}
/* Fin initialisation */