What is the source code of conn.php?
Mr_BIG
Mr_BIG 2018-04-05 10:40:40
0
1
1807

What is the source code of conn.php?

Mr_BIG
Mr_BIG

reply all(1)
树下赏蝶

This is the PHP file that contains the connection to the database. You can write it like this

<?php

define('DB_HOST','localhost');
define('DB_USER' ,'root');
define('DB_PSW','Connection password');
define('DB_NAME','Database name');
define('DB_CHARSET','utf-8' );
$cnn=mysqli_connect(DB_HOST,DB_USER,DB_PSW,DB_NAME);
/*if (!$cnn){
die("Failed to connect to database").mysqli_error($cnn);
}
echo "Connect to database successfully";*/
?>

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!