<?php if(!$whichpage) { $notepage=1; } else { $notepage=$whichpage; } $noterecs=0; $pagesize=10; $bbsconn=mysql_connect("localhost","root"); mysql_select_db("rainwindy",$bbsconn); $bbsresult=mysql_query("select * from bbs order by id
上回說完了商品的列表顯示方法。下面來談談顯示商品詳細資料的方法,這與我們在論壇中常用的顯示文章的方法大同小異。 ********顯示詳細資料的檔案*********** detail.php <?php include "config.inc.php"; //顯示商品詳細資料 //用全域變數來做,可以方便地取到多個欄位的值。 //有id,名字,價格,介紹,當前價,單位,圖片,結束時間。 function ReadDetail(){ global $WARE_TABLE; global $id,$
This module uses the functions of the ZZIPlib library by Guido Draheim to transparently read ZIP compressed archives and the files inside them. 這個模組使用 ZZIPlib 庫(Guido Draheim)來讀取 ZIP 壓縮文檔和裡面的檔案Please note that ZZIPlib only provides a subset of
<?php $key = "This is supposed to be a secret key !!!"; function keyED($txt,$encrypt_key) { $encrypt_key = md5($encrypt_key); $ctr=0; $tmp = ""; for ($i=0;$i<strlen($txt);$i++) { if ($ctr==strlen($encrypt_key)) $ctr=0; $tmp.= substr($
# -------------------------------------------------------- # 資料表的結構 'menu' # --------------------------------------------------------CREATE TABLE menu ( menu_id int(11) NOT NULL auto_increment, menu varchar(20) NOT NULL, menu_grade int(11) NOT NULL,