Advertisement
Guest User

Untitled

a guest
May 30th, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <?php
  2. $memnres = $bdd->query('SELECT * FROM membres ORDER BY ID DESC LIMIT 0, 10');
  3. while ($donnees = $membres->fetch())
  4. {
  5. echo '<p><strong> <a href=' . htmlspecialchars($donnees['ID']) . '>' . htmlspecialchars($donnees['pseudo']) . '</a></strong></br>' . htmlspecialchars($donnees['mail']) . '</p><hr />';
  6. }
  7. ?>
  8.  
  9. Erreur : Fatal error: Call to a member function fetch() on a non-object in /home/u22797/public_html/administration/membre.php on line 31
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement