Supercheezy

connect.php

Apr 6th, 2015
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <?php
  2. $hostname="localhost"; //local server name default localhost
  3. $username="toolok";  //mysql username default is root.
  4. $password="toolok";       //blank if no password is set for mysql.
  5. $database="toolok";  //database name which you created
  6. $con=mysql_connect($hostname,$username,$password);
  7. if(! $con)
  8. {
  9. die('Connection Failed'.mysql_error());
  10. }
  11.  
  12. mysql_select_db($database,$con);
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment