公共設定檔config.php
<?php header("Content-type:text/html;charset=utf-8"); define('HOST','127.0.0.1'); define('USERNAME','root'); define('PASSWORD','root'); ?>
程式解釋:
設定了檔案的編碼格式
將主機名,資料庫名,密碼定義成常數
##公共連接資料庫文件connect.php
<?php require_once('config.php'); $conn = mysqli_connect(HOST,USERNAME,PASSWORD);//数据库帐号密码为安装数据库时设置 if(mysqli_errno($conn)){ echo mysqli_errno($conn); exit; } mysqli_select_db($conn,"tieba"); mysqli_set_charset($conn,'utf8'); ?>
程式解釋: