Skip to content

Instantly share code, notes, and snippets.

@andimariadi
Created June 1, 2017 12:35
Show Gist options
  • Save andimariadi/ee89a1460670284c4bcfa763df3bea98 to your computer and use it in GitHub Desktop.
Save andimariadi/ee89a1460670284c4bcfa763df3bea98 to your computer and use it in GitHub Desktop.
<?php
$dbhost = 'localhost';
$dbuser = 'root';
$dbpassword = '';
$dbname = 'mediasosial';
$koneksi = mysql_connect($dbhost,$dbuser,$dbpassword);
$cek = mysql_select_db($dbname,$koneksi);
if (!$cek) {
echo "Koneksi kedatabase gagal!";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment