bidvertiser

Wednesday, October 22, 2008

mysql_connect example code

$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) 
{ die('Could not connect');
}
echo 'Connected successfully';

No comments: