Skip to content

Instantly share code, notes, and snippets.

@fannyhasbi
Created September 27, 2018 11:19
Show Gist options
  • Save fannyhasbi/0ff17c6217777896048697f319c73a54 to your computer and use it in GitHub Desktop.
Save fannyhasbi/0ff17c6217777896048697f319c73a54 to your computer and use it in GitHub Desktop.
File koneksi database dengan mysqli
<?php
$host = 'localhost';
$user = 'root';
$pass = '';
$db = 'test';
$connect = mysqli_connect($host, $user, $pass, $db);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment