Skip to content

Instantly share code, notes, and snippets.

@rizkyramadhan21
Last active January 5, 2018 15:10
Show Gist options
  • Save rizkyramadhan21/4dbd330e0888fc956eb377bf25d65530 to your computer and use it in GitHub Desktop.
Save rizkyramadhan21/4dbd330e0888fc956eb377bf25d65530 to your computer and use it in GitHub Desktop.
Koneksi ke database | Blog: wadagizig.com
<?php
$base_url = 'http://localhost/modal_dinamis';
define('DBHOST', 'localhost');
define('DBUSER', 'myusername');
define('DBPASS', 'mypassword');
define('DBNAME', 'mydatabase');
$db = new mysqli(DBHOST, DBUSER, DBPASS, DBNAME);
if ($db->connect_error) {
die("Could not connect to database: " . $db->connect_error);
}
/* End of file application/config/database.php */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment