miiidooo-19 Posted April 30, 2012 Share Posted April 30, 2012 bonjour, j'ai crée un fichier hors de la boutique je l'ai liée a la bdd de la boutique et quand je fait une simple requete sql ça s'affiche pas les résultats :s exemple <?php $req=mysql_query('SELECT * FROM ps_product ')or die(mysql_error()); $nb=mysql_num_rows($req); echo 'total lignes : '.$nb.'<br/>'; while ($result=mysql_fetch_assoc($req)) { echo 'id de produit : '.$result->id_product; echo '<br />'; } ?> le résultat qu'il doit s'afficher normalement c'est : total lignes : 7 id de produit : 1 id de produit : 2 id de produit : 3 id de produit : 4 id de produit : 5 id de produit : 6 id de produit : 7 et les résultats qui s'affiche maintenant c'est total lignes : 7 id de produit : id de produit : id de produit : id de produit : id de produit : id de produit : id de produit : d'ou vien l'erreur Link to comment Share on other sites More sharing options...
Dev On Web Posted May 2, 2012 Share Posted May 2, 2012 echo 'id de produit : '.$result['id_product']; Link to comment Share on other sites More sharing options...
miiidooo-19 Posted May 2, 2012 Author Share Posted May 2, 2012 $result['id_product'] c'est utilisé quans je passe par mysql_fetch_object est pas mysql_fetch_assoc non ? Link to comment Share on other sites More sharing options...
Dev On Web Posted May 2, 2012 Share Posted May 2, 2012 Non non, voir la doc PHP officielle ici : http://php.net/manual/fr/function.mysql-fetch-assoc.php Link to comment Share on other sites More sharing options...
Monte a bord Victor Posted May 2, 2012 Share Posted May 2, 2012 Bonjour, Je suis d'accord avec Dev On Web, la fonction renvoie un tableau. Cordialement Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now