PHP開發(fā)簡(jiǎn)易貼吧之連結(jié)資料庫(kù)函數(shù)
公共設(shè)定檔config.php
<?php header("Content-type:text/html;charset=utf-8"); define('HOST','127.0.0.1'); define('USERNAME','root'); define('PASSWORD','root'); ?>
程式解釋:
設(shè)定了檔案的編碼格式
將主機(jī)名,資料庫(kù)名,密碼定義成常數(shù)
##公共連接資料庫(kù)文件connect.php
<?php require_once('config.php'); $conn = mysqli_connect(HOST,USERNAME,PASSWORD);//數(shù)據(jù)庫(kù)帳號(hào)密碼為安裝數(shù)據(jù)庫(kù)時(shí)設(shè)置 if(mysqli_errno($conn)){ echo mysqli_errno($conn); exit; } mysqli_select_db($conn,"tieba"); mysqli_set_charset($conn,'utf8'); ?>
程式解釋:
- #引入了設(shè)定檔