Skip to content

Instantly share code, notes, and snippets.

@rncrtr
Created April 26, 2013 17:25
Show Gist options
  • Save rncrtr/5468865 to your computer and use it in GitHub Desktop.
Save rncrtr/5468865 to your computer and use it in GitHub Desktop.
#php #mysql #connect #database #oldskool #deprecated
<?php
$dbname = 'database';
$server = 'localhost';
$user = 'root';
$pass = 'root';
$conn = mysql_connect($server, $user, $pass);
mysql_select_db($dbname,$conn);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment