Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. $host = "localhost";
  2. $user = "root";
  3. $password = "";
  4.  
  5. $connect = mysql_connect($host,$user,$password);if($connect){
  6. echo "Success connected!";
  7. }else{
  8. $error = mysql_error();
  9. exit();
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement