亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Database Connectivity

1, create a new conn.inc.php file:

Define the database connection constants as follows:

<?php
define("HOST",'localhost');
define("USER",'root');
define("PWD",'root');
define("DBNAME",'onecms');

2, create a new mysqli.php file:

<?php
include 'conn.inc.php';
$mysqli=new mysqli(HOST,USER,PWD,DBNAME);
if($mysqli->connect_errno){
    die('數(shù)據(jù)庫鏈接出錯'.$mysqli->connect_error);
}

The next time you connect to the database, you only need to import the mysqli.php file.

Continuing Learning
||
<?php echo "mysqli的用法";
submitReset Code