Advertisement
Guest User

Untitled

a guest
Sep 14th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2. $host = "localhost"; // Nama hostnya
  3. $username = "root"; // Username
  4. $password = ""; // Password (Isi jika menggunakan password)
  5. $database = "gis"; // Nama databasenya
  6. $gis = mysqli_connect($host, $username, $password, $database); // Koneksi ke MySQL
  7. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement