LiteSite/工作程式:修訂版本之間的差異

出自六年制學程
跳轉到: 導覽搜尋
二、免登入,使用資料庫(預設連資料庫,不管工作程式須不須要)
第 17 行: 第 17 行:
 
while($row=mysqli_fetch_assoc($result)){$str.=…;}
 
while($row=mysqli_fetch_assoc($result)){$str.=…;}
 
if(!isset($_REQUEST['ajax'])){echo $html1;}
 
if(!isset($_REQUEST['ajax'])){echo $html1;}
 +
echo $str;
 +
if(!isset($_REQUEST['ajax'])){echo $html2;}
 +
?&gt;</pre>
 +
 +
===三、登入===
 +
<pre>&lt;?php
 +
include_once '../../constant.php'; // 載入伺服器參數
 +
include_once "../theme.php"; // 載入 site 布景,順便會載入 site 常、變數,連資料庫
 +
if(!isset($_REQUEST['ajax'])){echo $html1;} // 本行須在 theme.php 與 $login->logon(); 之間
 +
$nowMsg="僅允許…看…。";
 +
include_once CLASS_FILE_PATH."/database/login.php";
 +
$login = new login;
 +
$login->loginTable=…;
 +
$login->logon();
 +
if(isset($login->checkin) && $login->checkin==1){
 +
$str=…;
 +
}
 
echo $str;
 
echo $str;
 
if(!isset($_REQUEST['ajax'])){echo $html2;}
 
if(!isset($_REQUEST['ajax'])){echo $html2;}
 
?&gt;</pre>
 
?&gt;</pre>

2021年6月14日 (一) 21:13的修訂版本

一、免登入,未使用資料庫(預設連資料庫,不管工作程式須不須要)

<?php
include_once '../../constant.php';	// 載入伺服器參數
include_once "../theme.php";		// 載入 site 布景,順便會載入 site 常、變數,連資料庫
$str=…;
if(!isset($_REQUEST['ajax'])){echo $html1;}
echo $str;
if(!isset($_REQUEST['ajax'])){echo $html2;}
?>

二、免登入,使用資料庫(預設連資料庫,不管工作程式須不須要)

<?php
include_once '../../constant.php';	// 載入伺服器參數
include_once "../theme.php";		// 載入 site 布景,順便會載入 site 常、變數,連資料庫
$result=DB::queryF("…");
$str=…;
while($row=mysqli_fetch_assoc($result)){$str.=…;}
if(!isset($_REQUEST['ajax'])){echo $html1;}
echo $str;
if(!isset($_REQUEST['ajax'])){echo $html2;}
?>

三、登入

<?php
include_once '../../constant.php';	// 載入伺服器參數
include_once "../theme.php";		// 載入 site 布景,順便會載入 site 常、變數,連資料庫
if(!isset($_REQUEST['ajax'])){echo $html1;}	// 本行須在 theme.php 與 $login->logon(); 之間
$nowMsg="僅允許…看…。";
include_once CLASS_FILE_PATH."/database/login.php";
$login = new login;
$login->loginTable=…;
$login->logon();
if(isset($login->checkin) && $login->checkin==1){
	$str=…;
}
echo $str;
if(!isset($_REQUEST['ajax'])){echo $html2;}
?>