Guest User

Untitled

a guest
Oct 20th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. <?php
  2. $result = mysql_query("SELECT * FROM members");
  3.  
  4. while($row = mysql_fetch_array($result))
  5.   {
  6.   echo "Welcome " .$row['FirstName'];
  7.   }
  8.  
  9. mysql_close($con);
  10. ?>
Add Comment
Please, Sign In to add comment