Advertisement
Guest User

Koneksi Database Lumino

a guest
Oct 9th, 2016
2,028
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php
  2. // koneksi database -------------------------------------------->
  3. $hostname = "localhost";
  4. $username = "root";
  5. $password = "";
  6. $database = "lumino";
  7. $db = new mysqli ( $hostname , $username , $password , $database );
  8. echo $db->connect_errno?'Koneksi gagal : '.$db->connect_error:'';
  9. //<--------------------------------------------------------------
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement