Skip to content

Instantly share code, notes, and snippets.

@hanafiah
Last active August 29, 2015 13:57
Show Gist options
  • Save hanafiah/9380902 to your computer and use it in GitHub Desktop.
Save hanafiah/9380902 to your computer and use it in GitHub Desktop.
<?php
//mssql
$dbh = new PDO("mssql:host=$host;dbname=$dbname, $user, $pass");
//sybase
$dbh = new PDO("sybase:host=$host;dbname=$dbname, $user, $pass");
//sqlite
$dbh = new PDO("sqlite:path/database.db");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment