Guest User

Untitled

a guest
Jul 1st, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2. $servername = "localhost";
  3. $username = "root";
  4. $password = "";
  5. $dbname = "customers";
  6.  
  7. // Create connection
  8. $conn = new mysqli($servername, $username, $password, $dbname);
  9. // Check connection
  10. if ($conn->connect_error) {
  11. die("Connection failed: " . $conn->connect_error);
  12. }
  13.  
  14. $SD = mysql_query("SELECT start_date, FROM business");
  15. $RD = mysql_query("SELECT redunancy, FROM business");
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22. $conn->close();
  23. ?>
Add Comment
Please, Sign In to add comment