Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. define('HOST', 'localhost');
  3. define('USER', 'root');
  4. define('PASS', '');
  5. define('DB', 'db_android');
  6. $con = mysqli_connect(HOST, USER, PASS, DB) or die ('Gagal');
  7. ?>