Advertisement
Guest User

Untitled

a guest
Feb 18th, 2016
529
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2. $hostname = "localhost";
  3. $database = "andin";
  4. $username = "root";
  5. $password = "";
  6.  
  7. $connect = mysql_connect($hostname, $username, $password) or die ("gagal koneksi !.");
  8. mysql_select_db($database, $connect) or die("buka database gagal !.");
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement