Guest User

Untitled

a guest
Jan 12th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2. mysql_connect("localhost","root","");
  3. mysql_select_db("makanmulu");
  4.  
  5. $hasil = mysql_query("SELECT * FROM recipe");
  6.  
  7. while ($baris = mysql_fetch_array($hasil))
  8. {
  9. echo "<img src = ".$baris['picture'].">";
  10. }
  11. ?>
Add Comment
Please, Sign In to add comment