Home  >  Article  >  Backend Development  >  mysql database connection code_PHP tutorial

mysql database connection code_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:04:441066browse

mysql tutorial database tutorial connection code

$cn = mysql_connect('localhost','root','root');
if( $cn )
{
die('Database connection successful');
}
else
{
die('Connection failed');
}

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/630831.htmlTechArticlemysql tutorial database tutorial connection code $cn = mysql_connect('localhost','root','root'); if( $cn ) { die('Database connection successful'); } else { die('Connection failed'); }...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn