工作程式:修訂版本之間的差異
出自六年制學程
(新頁面: 分類:Etable分類:LiteSite ====(一)免登入,未使用資料庫(預設連資料庫,不管工作程式須不須要)==== <pre><?php include_once '../../constant.php'; /...) |
(→(一)免登入,未使用資料庫(預設連資料庫,不管工作程式須不須要)) |
||
第 2 行: | 第 2 行: | ||
====(一)免登入,未使用資料庫(預設連資料庫,不管工作程式須不須要)==== | ====(一)免登入,未使用資料庫(預設連資料庫,不管工作程式須不須要)==== | ||
<pre><?php | <pre><?php | ||
− | include_once '../../ | + | include_once '../constant.php'或'../userConstant.php'; // 載入伺服器參數 |
− | include_once " | + | include_once "./theme.php"; // 載入 site 布景,順便會載入 site 常、變數,連資料庫 |
$str=…; | $str=…; | ||
echo $html1; | echo $html1; |
2021年7月8日 (四) 22:13的修訂版本
(一)免登入,未使用資料庫(預設連資料庫,不管工作程式須不須要)
<?php include_once '../constant.php'或'../userConstant.php'; // 載入伺服器參數 include_once "./theme.php"; // 載入 site 布景,順便會載入 site 常、變數,連資料庫 $str=…; echo $html1; echo $str; echo $html2; ?>