Advertisement
Guest User

Untitled

a guest
Sep 16th, 2017
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <html>
  2. <head>
  3. </head>
  4. <body>
  5. Hello, <?php
  6. $dbhost = 'localhost';
  7. $dbuser = 'root';
  8. $dbpass = '';
  9.  
  10. $conn = mysql_connect($dbhost, $dbuser, $dbpass) or die('Error connecting to mysql');
  11.  
  12. $dbname = 'subscribers';
  13. mysql_select_db($dbname);
  14. ?>
  15. </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement