Guest User

Untitled

a guest
May 13th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <?php
  2.  
  3. $host = "localhost";
  4. $user = "wltmadmin";
  5. $pass = "Zocnufdor1";
  6. $database = "wltm";
  7. mysql_connect($host, $user, $pass) or die("Could not connect to host.");
  8. mysql_select_db($database) or die("Could not find database.");
  9.  
  10. $id = $_GET['id'];
  11. $query = "SELECT * FROM listings WHERE id='$id'";
  12. $result = mysql_fetch_array(mysql_query($query));
  13.  
  14. if($result['premium'] == 1){
  15. echo "This company has a premium listing with the following open times for monday:<br>";
  16. echo "<b>Monday - </b>Open: " . $result['monday_open'] . ", Close: " . $result['monday_close'] . "<br>";
  17. }else{
  18. echo "This company is not a premium listing!";
  19. }
  20.  
  21. ?>
Add Comment
Please, Sign In to add comment