Skip to content

Instantly share code, notes, and snippets.

Created March 5, 2017 06:27
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/b60514dfcecfdc98e3386d727ed9230c to your computer and use it in GitHub Desktop.
Save anonymous/b60514dfcecfdc98e3386d727ed9230c to your computer and use it in GitHub Desktop.
<?php
error_reporting(0);
if(!mysql_connect("localhost","root",""))
{
die('oops connection problem ! --> '.mysql_error());
}
if(!mysql_select_db("texttolink")) //replace it with Your database 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