Guest User

Untitled

a guest
Jun 20th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. mysql_connect(localhost,$username,$password);
  2. @mysql_select_db($database) or die( "Unable to select database");
  3. $query="SELECT * FROM godeltas_dbinfo.testphp";
  4. $result=mysql_query($query);
  5.  
  6. $num=mysql_numrows($result);
  7.  
  8. mysql_close();
  9.  
  10. while($row = mysql_fetch_array($result)){
  11. echo $row['first']. " - ". $row['last'];
  12. echo "<br />";
  13. }
Add Comment
Please, Sign In to add comment