Advertisement
Guest User

db

a guest
Jan 20th, 2019
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. $mysql_hostname = "127.0.0.1";
  3. $mysql_user = "root";
  4. $mysql_password = "";
  5. $mysql_database = "dbgadget";
  6. $prefix = "";
  7. $bd = mysql_connect($mysql_hostname, $mysql_user, $mysql_password) or die("Could not connect database");
  8. mysql_select_db($mysql_database, $bd) or die("Could not select database");
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement