Skip to content

Instantly share code, notes, and snippets.

@simplyniceweb
Created May 8, 2017 08:00
Show Gist options
  • Save simplyniceweb/fcec3b745294f25a657e4c01d1987f6c to your computer and use it in GitHub Desktop.
Save simplyniceweb/fcec3b745294f25a657e4c01d1987f6c to your computer and use it in GitHub Desktop.
<?php
$host = "localhost";
$database = "mydb";
$username = "root";
$password = "";
try {
$connection = new PDO("mysql:host=$host;dbname=$database;charset=utf8", $username, $password);
} catch(PDOException $e) {
echo $e->getMessage(); // message sang error if indi mag connect
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment