Guest User

Untitled

a guest
Feb 27th, 2012
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <?php
  2. phpinfo();
  3.  
  4. phpinfo(INFO_MODULES);
  5.  
  6. $link = mysql_connect('localhost', 'root', '');
  7. if (!$link) {
  8. die('Could not connect: ' . mysql_error());
  9. }
  10. echo 'Connected successfully';
  11. mysql_close($link);
  12. ?>
Add Comment
Please, Sign In to add comment