Title1

Title2

Title3

8-3 config.php

<?php
error_reporting(E_ALL); @ini_set('display_errors', true);
// URL Association for SSL and Protocol Compatibility
$http = 'http://';
if (!empty($_SERVER['HTTPS'])) {
    $http = ($_SERVER['HTTPS']=='on') ? 'https://' : 'http://';
}
#網站實體路徑
define('WEB_PATH', str_replace("\\","/",dirname(__FILE__)));
#網站URL
define('WEB_URL', $http.$_SERVER["HTTP_HOST"].str_replace($_SERVER["DOCUMENT_ROOT"],"",WEB_PATH));
#佈景目錄
define('WEB_THEME', "default");
#網站名稱
define('WEB_TITLE', "網站名稱");

#取得檔名
$file_name=basename ($_SERVER['PHP_SELF']);//index.php


#MYSQL
#資料庫伺服器
$db_host = "localhost";

#資料庫使用者帳號
$db_user = "root";

#資料庫使用者密碼
$db_password = "111111";

#資料庫名稱
$db_name = "tncomu";

#PHP 5.2.9以後
$mysqli = new mysqli($db_host, $db_user, $db_password, $db_name);

if ($mysqli->connect_error) {
  die('無法連上資料庫 (' . $mysqli->connect_errno . ') '
        . $mysqli->connect_error);
}

#設定資料庫語系
$mysqli->set_charset("utf8");


增加 session 及 給遠端 與本機端 同時使用的 config.php
請自行填上您自己遠端 與本機端的mysql 資訊

<?php
session_start();
error_reporting(E_ALL); @ini_set('display_errors', true);
// URL Association for SSL and Protocol Compatibility
$http = 'http://';
if (!empty($_SERVER['HTTPS'])) {
    $http = ($_SERVER['HTTPS']=='on') ? 'https://' : 'http://';
}
#網站實體路徑
define('WEB_PATH', str_replace("\\","/",dirname(__FILE__)));
#網站URL
define('WEB_URL', $http.$_SERVER["HTTP_HOST"].str_replace($_SERVER["DOCUMENT_ROOT"],"",WEB_PATH));
#佈景目錄
define('WEB_THEME', "default");
#網站名稱
define('WEB_TITLE', "網站名稱");

#取得檔名
$file_name=basename ($_SERVER['PHP_SELF']);//index.php



if($_SERVER["SERVER_NAME"] == "localhost"){
  #判斷主機為UniServerZ
  #MYSQL
  #資料庫伺服器
  $db_host = "localhost";

  #資料庫使用者帳號
  $db_user = "root";

  #資料庫使用者密碼
  $db_password = "111111";

  #資料庫名稱
  $db_name = "db2";
}else{
  #MYSQL
  #資料庫伺服器
  $db_host = "";

  #資料庫使用者帳號
  $db_user = "";

  #資料庫使用者密碼
  $db_password = "";

  #資料庫名稱
  $db_name = "";

}

#PHP 5.2.9以後
$mysqli = new mysqli($db_host, $db_user, $db_password, $db_name);

if ($mysqli->connect_error) {
  die('無法連上資料庫 (' . $mysqli->connect_errno . ') '
        . $mysqli->connect_error);
}

#設定資料庫語系
$mysqli->set_charset("utf8");