Skip to content

Instantly share code, notes, and snippets.

View galihazizif's full-sized avatar

Galih Azizi Firmansyah galihazizif

View GitHub Profile
@galihazizif
galihazizif / trypdo.php
Created May 16, 2017 08:14
Mencoba PDO
try{
$pdo = new PDO($dsn, $username, $password);
//dsn : string spesifik tergantung database yang digunakan
}
catch(PDOException $er){
echo $er->getMessage();
}
<?php
$handler = curl_init();
?>