Skip to content

Instantly share code, notes, and snippets.

Created January 15, 2017 11:41
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 anonymous/f0ccc0ce366096e5e4854649b5886aa7 to your computer and use it in GitHub Desktop.
Save anonymous/f0ccc0ce366096e5e4854649b5886aa7 to your computer and use it in GitHub Desktop.
<?php
error_reporting(0);
if(!mysql_connect("localhost","root","password_here")) //change your details
{
die('oops connection problem ! --> '.mysql_error());
}
if(!mysql_select_db("Your_databse_name")) //change databse name
{
die('oops database selection problem ! --> '.mysql_error());
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment