:::

5. 新增、列出功能

一、 XOOPS的資料庫物件

  1. $xoopsDB是內建的資料庫物件
  2. 基本的連線XOOPS已經處理好了
  3. 在函數中記得global $xoopsDB;
  4. 加入資料表前置字串:$xoopsDB->prefix("資料表")
  5. 執行SQL語法:$result=$xoopsDB->query("SQL語法")
  6. 抓取資料陣列(名稱索引):$xoopsDB->fetchArray($result)
  7. 抓取資料陣列(數字索引):$xoopsDB->fetchRow($result)
  8. 最新流水號:$xoopsDB->getInsertId()

二、 XOOPS使用者物件:$xoopsUser

  1. 取得使用者編號的寫法:$uid=$xoopsUser->uid();
  2. 避免沒登入產生錯誤:$uid=($xoopsUser)?$xoopsUser->uid():0;
  3. $xoopsUser物件方法:
    01<?php
    02$xoopsUser->getVar('uid'):1 //使用者編號
    03$xoopsUser->getVar('name'):吳大頭 //真實姓名
    04$xoopsUser->getVar('uname'):tad //登入帳號
    05$xoopsUser->getVar('email'):tad0616@gmail.com //Email
    06$xoopsUser->getVar('url'):http://localhost/x25/ //個人網站
    07$xoopsUser->getVar('user_avatar'):avatars/cavt50877193c9788.png //頭像圖片
    08$xoopsUser->getVar('user_regdate'):1294384702 //註冊日
    09$xoopsUser->getVar('user_icq'):
    10$xoopsUser->getVar('user_from'):
    11$xoopsUser->getVar('user_sig'):
    12$xoopsUser->getVar('user_viewemail'):1
    13$xoopsUser->getVar('actkey'):
    14$xoopsUser->getVar('user_aim'):
    15$xoopsUser->getVar('user_yim'):
    16$xoopsUser->getVar('user_msnm'):
    17$xoopsUser->getVar('pass'):56ab24c15b72a457069c5ea42fcfc640
    18$xoopsUser->getVar('posts'):12
    19$xoopsUser->getVar('attachsig'):0
    20$xoopsUser->getVar('rank'):7
    21$xoopsUser->getVar('level'):5
    22$xoopsUser->getVar('theme'):school2013
    23$xoopsUser->getVar('timezone_offset'):8.0
    24$xoopsUser->getVar('last_login'):1358862705
    25$xoopsUser->getVar('umode'):thread
    26$xoopsUser->getVar('uorder'):0
    27$xoopsUser->getVar('notify_method'):1
    28$xoopsUser->getVar('notify_mode'):0
    29$xoopsUser->getVar('user_occ'):龍崎國小
    30$xoopsUser->getVar('bio'):
    31$xoopsUser->getVar('user_intrest'):114620
    32$xoopsUser->getVar('user_mailok'):0
    33$xoopsUser->getGroups():Array
    34?>
  4. 以uid取得使用者名稱
    1$uid_name=XoopsUser::getUnameFromId($uid,1);
    2if(empty($uid_name))$uid_name=XoopsUser::getUnameFromId($uid,0);

     

二、 寫入資料庫

  1. PHP的寫法:
    1$sql="insert into `xx_tad_honor` (`honor_year` , `honor_date` , `honor_students` , `honor_descript` , `honor_teachers` , `honor_note`) values('$honor_year' , '$honor_date' , '$honor_students' , '$honor_descript' , '$honor_teachers' , '$honor_note' , '$uid')";
    2mysql_query($sql) or die(mysql_error());
  2. XOOPS的寫法:
    1$sql="insert into ".$xoopsDB->prefix("tad_honor")." (`honor_year` , `honor_date` , `honor_students` , `honor_descript` , `honor_teachers` , `honor_note` , `uid`) values('$honor_year' , '$honor_date' , '$honor_students' , '$honor_descript' , '$honor_teachers' , '$honor_note' , '$uid')";
    2$xoopsDB->queryF($sql) or redirect_header('index.php', 3, mysql_error());

 

三、 列出全部

 

  1. 列出所有資料的SQL語法(幾乎所有撈資料的情形皆可套用,只要修改資料表名稱以及排序欄位即可):
    1$sql="select * from ".$xoopsDB->prefix("tad_honor")." order by `honor_date` desc";
    2$result=$xoopsDB->queryF($sql) or redirect_header('index.php', 3, mysql_error());
    3$all_data="";
    4$i=0;
    5while($all=$xoopsDB->fetchArray($result)){
    6  $all_data[$i]=$all;
    7  $i++;
    8}
    9$xoopsTpl->assign("all_data" , $all_data);
  2. 其中 $all 是一個陣列,每抓出一筆資料,就會得到下列這樣的陣列:
    1$all['honor_sn']='流水號的值';
    2$all['honor_year']='學年度的值';
    3$all['honor_date']='日期的值';
    4$all['honor_students']='得獎者的值';
    5$all['honor_descript']='得獎事項的值';
    6$all['honor_teachers']='指導老師的值';
    7$all['honor_note']='備註的值';
    8$all['uid']='發布者的值';
  3. 當我們使用 $all_data[$i]=$all; 後,會產生如下的值(假如抓到三筆資料的話),換言之,當我們多加上一維(現在是二維陣列了)之後,一個 $all_data 就足以容納所有的資料內容:
    01$all_data[0]['honor_sn']='第1筆資料流水號的值';
    02$all_data[0]['honor_year']='第1筆資料學年度的值';
    03$all_data[0]['honor_date']='第1筆資料日期的值';
    04$all_data[0]['honor_students']='第1筆資料得獎者的值';
    05$all_data[0]['honor_descript']='第1筆資料得獎事項的值';
    06$all_data[0]['honor_teachers']='第1筆資料指導老師的值';
    07$all_data[0]['honor_note']='第1筆資料備註的值';
    08$all_data[0]['uid']='第1筆資料發布者的值';
    09 
    10$all_data[1]['honor_sn']='第2筆資料流水號的值';
    11$all_data[1]['honor_year']='第2筆資料學年度的值';
    12$all_data[1]['honor_date']='第2筆資料日期的值';
    13$all_data[1]['honor_students']='第2筆資料得獎者的值';
    14$all_data[1]['honor_descript']='第2筆資料得獎事項的值';
    15$all_data[1]['honor_teachers']='第2筆資料指導老師的值';
    16$all_data[1]['honor_note']='第2筆資料備註的值';
    17$all_data[1]['uid']='第2筆資料發布者的值';
    18 
    19$all_data[2]['honor_sn']='第3筆資料流水號的值';
    20$all_data[2]['honor_year']='第3筆資料學年度的值';
    21$all_data[2]['honor_date']='第3筆資料日期的值';
    22$all_data[2]['honor_students']='第3筆資料得獎者的值';
    23$all_data[2]['honor_descript']='第3筆資料得獎事項的值';
    24$all_data[2]['honor_teachers']='第3筆資料指導老師的值';
    25$all_data[2]['honor_note']='第3筆資料備註的值';
    26$all_data[2]['uid']='第3筆資料發布者的值';

四、產生XOOPS風格的表格

  1. 套用XOOPS的表格風格:<table cellspacing='1' class='outer'>,標題部份:<th class='txtcenter'>分類標題</th>,表格內容部份:<tr class='odd'>或<tr class='even'>
    01<table cellspacing='1' class='outer'>
    02  <tr>
    03    <th class='txtcenter'>學年度</th>
    04    <th class='txtcenter'>得獎日期</th>
    05    <th class='txtcenter'>得獎者</th>
    06    <th class='txtcenter'>得獎事項</th>
    07    <th class='txtcenter'>指導老師</th>
    08  </tr>
    09  
    10  <tr class='odd'>
    11    <td>第1行學年度的內容</td>
    12    <td>第1行得獎日期的內容</td>
    13    <td>第1行得獎者的內容</td>
    14    <td>第1行得獎事項的內容</td>
    15    <td>第1行指導老師的內容</td>
    16  </tr>
    17 
    18  <tr class='even'>
    19    <td>第2行學年度的內容</td>
    20    <td>第2行得獎日期的內容</td>
    21    <td>第2行得獎者的內容</td>
    22    <td>第2行得獎事項的內容</td>
    23    <td>第2行指導老師的內容</td>
    24  </tr>
    25 
    26</table>

五、利用Smarty迴圈產生列表內容

  1. smarty迴圈的寫法:
    1<{foreach from=$all_data item=data}>
    2  <tr>
    3    <td><{$data.honor_year}></td>
    4    <td><{$data.honor_date}></td>
    5    <td><{$data.honor_students}></td>
    6    <td><{$data.honor_descript}></td>
    7    <td><{$data.honor_teachers}></td>
    8  </tr>
    9<{/foreach}>
  2. 套用上BootStrap後的表格:
    01<table class="table table-striped table-bordered table-hover">
    02  <tr>
    03    <th class='txtcenter'>學年度</th>
    04    <th class='txtcenter'>得獎日期</th>
    05    <th class='txtcenter'>得獎者</th>
    06    <th class='txtcenter'>得獎事項</th>
    07    <th class='txtcenter'>指導老師</th>
    08  </tr>
    09  
    10  <{foreach from=$all_data item=data}>
    11    <tr>
    12      <td><{$data.honor_year}></td>
    13      <td><{$data.honor_date}></td>
    14      <td><{$data.honor_students}></td>
    15      <td><{$data.honor_descript}></td>
    16      <td><{$data.honor_teachers}></td>
    17    </tr>
    18  <{/foreach}>
    19 
    20</table>

六、 在樣板中使用判斷式

  1. 如果要在同一個樣板,可以選擇性的出現「表單」或者「資料列表」,那麼可以用 <{if}><{elseif}><{else}><{/if}>來做判斷。
    1<{if $now_op=="honor_form"}>
    2  <!--顯示新增表單-->
    3<{elseif $now_op=="honor_modify_form"}>
    4  <!--顯示修改表單-->
    5<{else}>
    6  <!--顯示資料列表-->
    7<{/if}>
  2. 當然,我們需要傳一個樣板變數讓樣板做判斷,例如:$now_op

七、加入後台管理頁面標題

  1. 請在頁尾之前加入:
    1include_once XOOPS_ROOT_PATH."/modules/" . $xoopsModule->getVar("dirname") . "/class/admin.php" ;
    2$index_admin = new ModuleAdmin() ;
    3$admin_title=$index_admin->addNavigation('檔名.php') ;
    4$xoopsTpl->assign("admin_title" , $admin_title);
  2. 接著在樣板檔套上 <{$admin_title}> 樣板標籤即可。

:::

搜尋

QR Code 區塊

https%3A%2F%2Fmail.tad0616.cp27.secserverpros.com%2Fmodules%2Ftad_book3%2Fpage.php%3Ftbdsn%3D696%26tbsn%3D25

書籍目錄

展開 | 闔起

線上使用者

78人線上 (25人在瀏覽線上書籍)

會員: 0

訪客: 78

更多…