Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. //fetch array
  2.  
  3. if(isset($_POST["submit4"]))
  4. {
  5. $res=mysqli_query($link, "SELECT * FROM table1");
  6. while($row=mysqli_fetch_array($res))
  7. {
  8. echo $row["name"],$row["city"];
  9. echo "<br>";
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement