j'aimerais pour une meme requete faire 2 fois : $aa=mysql_fetch_array($bb);
je m'explik:
- une fois pour l'utiliser pour l'affichage d'informations
- puis un peu plus loin dans un while
--------------------------------------------------------------------------------------------------------------------------
//requete principale
$req="select a, b, c, d from blablabla where blabla=blabla";
$reqq=mysql_query($req) or die(mysql_error());
$rslt=mysql_fetch_array($reqq, MYSQL_ASSOC);
.
.
. AFFICHAGE AVEC $rslt
.
.
while($list=mysql_fetch_array($reqq)){
.
. AFFICHAGE AVEC $list
.
}
--------------------------------------------------------------------------------------------------------------------------
merci d'avance pour vos reponses...