Advertisement
Guest User

Untitled

a guest
Jun 1st, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. $dbhost = 'localhost';
  4. $dbuser = 'root';
  5. $dbpassword = '';
  6. $dbname = 'mediasosial';
  7. $koneksi = mysql_connect($dbhost,$dbuser,$dbpassword);
  8. $cek = mysql_select_db($dbname,$koneksi);
  9. if (!$cek) {
  10. echo "Koneksi kedatabase gagal!";
  11. }
  12.  
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement