Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <HEAD> <TITLE> Search </TITLE> </HEAD>
  2. <BODY>
  3.  
  4. <h1>Search for your favourite movies here</h1>
  5. <b>`enter code here`
  6. <p> Here you can search through our exciting selection of existing and upcoming movies </p>
  7. <p> You can search our website by choosing from one of the drop down lists below depending on what you
  8. know about the movie </p>
  9. </b>
  10.  
  11.  
  12. <?php
  13.  
  14. $connection = mysql_connect('localhost', 'labuser', 'Labuser1');
  15.  
  16. mysql_select_db('datab');
  17. $query = "SELECT * FROM fname";
  18. $result = mysql_query($query);
  19.  
  20. echo "<table>";
  21.  
  22. while($row = mysql_fetch_array($result))
  23. {
  24. echo <h2>$row['name']</h2>;
  25.  
  26. }
  27. echo "</table>";
  28.  
  29. mysql_close();
  30. ?>
  31.  
  32. </BODY>
  33. </HTML>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement