Guest User

Untitled

a guest
Jan 15th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. include ('connecter.php');
  3.  
  4. $query='SELECT id_etud,nom_etud,prenom_etud FROM etudiants';
  5.  
  6. $result=mysql_query($query);
  7.  
  8. while($row=mysql_fetch_row($result))
  9. {
  10. echo $row[0]." ";
  11. echo $row[1]." ";
  12. echo $row[2]." ";
  13. echo "<br>";
  14. }
  15.  
  16. ?>
Add Comment
Please, Sign In to add comment