Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2. $dbhost = "localhost";
  3. $dbuser = "root";
  4. $dbpass = "";
  5. $dbname = "ecdb";
  6. mysql_connect($dbhost,$dbuser,$dbpass) or die('cannot connect to the server');
  7. mysql_select_db($dbname) or die('database selection problem');
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement