Skip to content

Instantly share code, notes, and snippets.

@pedrolopesme
Created August 13, 2008 17:51
Show Gist options
  • Save pedrolopesme/5278 to your computer and use it in GitHub Desktop.
Save pedrolopesme/5278 to your computer and use it in GitHub Desktop.
// Criando o handle de uma conexão com o PostgreSQL
$db = new PDO("pgsql:dbname=MEU_DB;host=localhost", "USUARIO", "SENHA" );
// Criando o handle de uma conexão com o MySQL
$db = new PDO("mysql:dbname=MEU_DB;host=localhost", "USUARIO", "SENHA" );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment