Skip to content

Instantly share code, notes, and snippets.

@debojitkakoti
Created January 28, 2014 08:27
Show Gist options
  • Save debojitkakoti/8663969 to your computer and use it in GitHub Desktop.
Save debojitkakoti/8663969 to your computer and use it in GitHub Desktop.
php mysql connect
<?php
$con = mysql_connect("localhost", "root", "");
if(!$con){
die(mysql_error());
}
mysql_select_db('myconference') or die(mysql_error());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment