Advertisement
zegige

mysql.php

Dec 28th, 2011
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?php
  2.  
  3. // Mysql settings
  4.  
  5. $user           = "root";
  6. $password   = "";
  7. $database   = "testdatabasefacemash";
  8. $host           = "localhost";
  9.  
  10. mysql_connect($host,$user,$password);
  11. mysql_select_db($database) or die( "Unable to select database");
  12.  
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement