Pb dans mon code php
Résolu/Fermé
enzo
-
23 juil. 2009 à 15:13
Nabla's Messages postés 18203 Date d'inscription mercredi 4 juin 2008 Statut Contributeur Dernière intervention 28 avril 2014 - 23 juil. 2009 à 15:41
Nabla's Messages postés 18203 Date d'inscription mercredi 4 juin 2008 Statut Contributeur Dernière intervention 28 avril 2014 - 23 juil. 2009 à 15:41
A voir également:
- Pb dans mon code php
- Code asci - Guide
- Code puk bloqué - Guide
- Code telephone oublié - Guide
- Code activation windows 10 - Guide
- Code gta 4 ps4 - Guide
3 réponses
Nabla's
Messages postés
18203
Date d'inscription
mercredi 4 juin 2008
Statut
Contributeur
Dernière intervention
28 avril 2014
3 193
23 juil. 2009 à 15:21
23 juil. 2009 à 15:21
le pb est a ce niveau la:
$req = mysql_query($sql);
$nbrows= mysql_num_rows($req);
for ($i=0;$i<$nbrows;$i++)
{
$data= mysql_fetch_object($req);
?>
tu n'as pas besoin du numrow, car tu fais du mode objet
je te conseilles de faire
<?
while ($data= mysql_fetch_object($req))
{
?>
<tr><td width="132" bgcolor="ffffff"><? echo $data->images_produits?></td>
<td width="228" bgcolor="ffffff"><? echo $data->nom_produit?></td>
<td width="180" bgcolor="ffffff"><? echo $data->prix_produit?></td>
</tr>
<?
}
?>
$req = mysql_query($sql);
$nbrows= mysql_num_rows($req);
for ($i=0;$i<$nbrows;$i++)
{
$data= mysql_fetch_object($req);
?>
tu n'as pas besoin du numrow, car tu fais du mode objet
je te conseilles de faire
<?
while ($data= mysql_fetch_object($req))
{
?>
<tr><td width="132" bgcolor="ffffff"><? echo $data->images_produits?></td>
<td width="228" bgcolor="ffffff"><? echo $data->nom_produit?></td>
<td width="180" bgcolor="ffffff"><? echo $data->prix_produit?></td>
</tr>
<?
}
?>
Nabla's
Messages postés
18203
Date d'inscription
mercredi 4 juin 2008
Statut
Contributeur
Dernière intervention
28 avril 2014
3 193
23 juil. 2009 à 15:41
23 juil. 2009 à 15:41
y a pas de quoi