八小時模組開發
一、利用 TadTools 內建分頁工具來分頁
引入TadTools工具
if(!file_exists(XOOPS_ROOT_PATH."/modules/tadtools/tad_function.php")){ redirect_header("http://www.tad0616.net/modules/tad_uploader/index.php?of_cat_sn=50",3, "需要 tadtools 模組,可至<a href='http://www.tad0616.net/modules/tad_uploader/index.php?of_cat_sn=50' target='_blank'>Tad教材網</a>下載。"); } include_once XOOPS_ROOT_PATH."/modules/tadtools/tad_function.php";分頁語法(請放在 $sql 之下,$result=$xoopsDB->query($sql); 之前)
//getPageBar($原sql語法, 每頁顯示幾筆資料, 最多顯示幾個頁數選項); $PageBar=getPageBar($sql,$num,$page_num); $bar=$PageBar['bar']; $sql=$PageBar['sql']; $total=$PageBar['total']; 二、讀出所有資料並換頁 //讀出所有資料 function list_dict(){ global $xoopsDB,$xoopsTpl; if(!file_exists(XOOPS_ROOT_PATH."/modules/tadtools/tad_function.php")){ redirect_header("http://www.tad0616.net/modules/tad_uploader/index.php?of_cat_sn=50",3, "需要 tadtools 模組,可至<a href='http://www.tad0616.net/modules/tad_uploader/index.php?of_cat_sn=50' target='_blank'>Tad教材網</a>下載。"); } include_once XOOPS_ROOT_PATH."/modules/tadtools/tad_function.php"; //資料庫語法 $sql="select * from `".$xoopsDB->prefix('oxford')."` order by eng"; //getPageBar($原sql語法, 每頁顯示幾筆資料, 最多顯示幾個頁數選項); $PageBar=getPageBar($sql,20,$page_num); $bar=$PageBar['bar']; $sql=$PageBar['sql']; $total=$PageBar['total']; //將資料庫語法送出執行 $result=$xoopsDB->query($sql) or redirect_header($_SERVER['PHP_SELF'],3, mysql_error()); //利用迴圈將所有資料取回 while(list($sn,$eng,$cht)=$xoopsDB->fetchRow($result)){ $dict[$sn]['eng']=$eng; $dict[$sn]['cht']=$cht; } $xoopsTpl->assign("dict",$dict); $xoopsTpl->assign("bar",$bar); }- redirect_header() 是XOOPS內建的一個換頁並顯示訊息的函數。
- 這次直接以 $sn 作為樣板陣列的索引值:$dict[$sn]['eng']=$eng;
- 其中 $dict 和 $bar 會被套用到樣板中,因此,樣板可以這樣寫:
- class="table"、class="btn btn-mini btn-warning"、class="btn btn-mini btn-danger" 都是bootstrap語法,用來美化表格及按鈕。
- 更多語法請詳見:http://kkbruce.tw/Bootstrap/BaseCSS#tables