Skip to content

Instantly share code, notes, and snippets.

@jayzeng
Created January 30, 2013 06:44
Show Gist options
  • Save jayzeng/4671250 to your computer and use it in GitHub Desktop.
Save jayzeng/4671250 to your computer and use it in GitHub Desktop.
dbconnection
<?php
// pdo
$pdo = new PDO("mysql:host=localhost;dbname=database", "username", "password");
// mysqli, oo way
$mysqli = new mysqli('localhost', 'username', 'password', 'database');
// mysqli, procedural
$mysqli = mysqli_connect('localhost', 'username', 'password', 'database');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment