Advertisement
Guest User

Untitled

a guest
Mar 6th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. session_start();
  3. $host = '203.114.72.126';
  4. $user = 'k4801091_jadwal';
  5. $pass = '123!@#';
  6. $db = 'k4801091_undangan';
  7.  
  8. $con = mysqli_connect($host,$user,$pass,$db);
  9. if (!$con) {
  10. die("Koneksi gagal: " . mysqli_connect_error());
  11. }
  12. echo "Koneksi berhasil";
  13. mysqli_close($conn);
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement