Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. <?php
  2.  
  3. $user = 'root';
  4. $pass = '';
  5.  
  6. $db = 'testdb';
  7.  
  8. $db = new mysqli('localhost', $user, $pass, $db) or die("Unable to connect");
  9.  
  10. echo "Great work";
  11.  
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement