Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save byjujohn/2954045 to your computer and use it in GitHub Desktop.
Save byjujohn/2954045 to your computer and use it in GitHub Desktop.
PHP: MySQL connection
<?php
echo "Connecting to MySQL Server ... ";
mysql_connect(
"localhost",
"admin",
"pass123")
or die(mysql_error());
echo "[OK]<br />";
echo "Selecting Database ... ";
mysql_select_db (
"database123")
or die(mysql_error());
echo "[OK]<br />";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment