<?php $xoopsUser->getVar('uid'):1 //使用者編號 $xoopsUser->getVar('name'):吳大頭 //真實姓名 $xoopsUser->getVar('uname'):tad //登入帳號 $xoopsUser->getVar('email'):tad0616@gmail.com //Email $xoopsUser->getVar('url'):http://localhost/x25/ //個人網站 $xoopsUser->getVar('user_avatar'):avatars/cavt50877193c9788.png //頭像圖片 $xoopsUser->getVar('user_regdate'):1294384702 //註冊日 $xoopsUser->getVar('user_icq'): $xoopsUser->getVar('user_from'): $xoopsUser->getVar('user_sig'): $xoopsUser->getVar('user_viewemail'):1 $xoopsUser->getVar('actkey'): $xoopsUser->getVar('user_aim'): $xoopsUser->getVar('user_yim'): $xoopsUser->getVar('user_msnm'): $xoopsUser->getVar('pass'):56ab24c15b72a457069c5ea42fcfc640 $xoopsUser->getVar('posts'):12 $xoopsUser->getVar('attachsig'):0 $xoopsUser->getVar('rank'):7 $xoopsUser->getVar('level'):5 $xoopsUser->getVar('theme'):school2013 $xoopsUser->getVar('timezone_offset'):8.0 $xoopsUser->getVar('last_login'):1358862705 $xoopsUser->getVar('umode'):thread $xoopsUser->getVar('uorder'):0 $xoopsUser->getVar('notify_method'):1 $xoopsUser->getVar('notify_mode'):0 $xoopsUser->getVar('user_occ'):龍崎國小 $xoopsUser->getVar('bio'): $xoopsUser->getVar('user_intrest'):114620 $xoopsUser->getVar('user_mailok'):0 $xoopsUser->getGroups():Array ?>
$uid_name=XoopsUser::getUnameFromId($uid,1); if(empty($uid_name))$uid_name=XoopsUser::getUnameFromId($uid,0);
$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')"; mysql_query($sql) or die(mysql_error());
$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')"; $xoopsDB->queryF($sql) or redirect_header('index.php', 3, mysql_error());
$sql="select * from ".$xoopsDB->prefix("tad_honor")." order by `honor_date` desc"; $result=$xoopsDB->queryF($sql) or redirect_header('index.php', 3, mysql_error()); $all_data=""; $i=0; while($all=$xoopsDB->fetchArray($result)){ $all_data[$i]=$all; $i++; } $xoopsTpl->assign("all_data" , $all_data);
$all['honor_sn']='流水號的值'; $all['honor_year']='學年度的值'; $all['honor_date']='日期的值'; $all['honor_students']='得獎者的值'; $all['honor_descript']='得獎事項的值'; $all['honor_teachers']='指導老師的值'; $all['honor_note']='備註的值'; $all['uid']='發布者的值';
$all_data[0]['honor_sn']='第1筆資料流水號的值'; $all_data[0]['honor_year']='第1筆資料學年度的值'; $all_data[0]['honor_date']='第1筆資料日期的值'; $all_data[0]['honor_students']='第1筆資料得獎者的值'; $all_data[0]['honor_descript']='第1筆資料得獎事項的值'; $all_data[0]['honor_teachers']='第1筆資料指導老師的值'; $all_data[0]['honor_note']='第1筆資料備註的值'; $all_data[0]['uid']='第1筆資料發布者的值'; $all_data[1]['honor_sn']='第2筆資料流水號的值'; $all_data[1]['honor_year']='第2筆資料學年度的值'; $all_data[1]['honor_date']='第2筆資料日期的值'; $all_data[1]['honor_students']='第2筆資料得獎者的值'; $all_data[1]['honor_descript']='第2筆資料得獎事項的值'; $all_data[1]['honor_teachers']='第2筆資料指導老師的值'; $all_data[1]['honor_note']='第2筆資料備註的值'; $all_data[1]['uid']='第2筆資料發布者的值'; $all_data[2]['honor_sn']='第3筆資料流水號的值'; $all_data[2]['honor_year']='第3筆資料學年度的值'; $all_data[2]['honor_date']='第3筆資料日期的值'; $all_data[2]['honor_students']='第3筆資料得獎者的值'; $all_data[2]['honor_descript']='第3筆資料得獎事項的值'; $all_data[2]['honor_teachers']='第3筆資料指導老師的值'; $all_data[2]['honor_note']='第3筆資料備註的值'; $all_data[2]['uid']='第3筆資料發布者的值';
<table cellspacing='1' class='outer'> <tr> <th class='txtcenter'>學年度</th> <th class='txtcenter'>得獎日期</th> <th class='txtcenter'>得獎者</th> <th class='txtcenter'>得獎事項</th> <th class='txtcenter'>指導老師</th> </tr> <tr class='odd'> <td>第1行學年度的內容</td> <td>第1行得獎日期的內容</td> <td>第1行得獎者的內容</td> <td>第1行得獎事項的內容</td> <td>第1行指導老師的內容</td> </tr> <tr class='even'> <td>第2行學年度的內容</td> <td>第2行得獎日期的內容</td> <td>第2行得獎者的內容</td> <td>第2行得獎事項的內容</td> <td>第2行指導老師的內容</td> </tr> </table>
<{foreach from=$all_data item=data}> <tr> <td><{$data.honor_year}></td> <td><{$data.honor_date}></td> <td><{$data.honor_students}></td> <td><{$data.honor_descript}></td> <td><{$data.honor_teachers}></td> </tr> <{/foreach}>
<table class="table table-striped table-bordered table-hover"> <tr> <th class='txtcenter'>學年度</th> <th class='txtcenter'>得獎日期</th> <th class='txtcenter'>得獎者</th> <th class='txtcenter'>得獎事項</th> <th class='txtcenter'>指導老師</th> </tr> <{foreach from=$all_data item=data}> <tr> <td><{$data.honor_year}></td> <td><{$data.honor_date}></td> <td><{$data.honor_students}></td> <td><{$data.honor_descript}></td> <td><{$data.honor_teachers}></td> </tr> <{/foreach}> </table>
<{if $now_op=="honor_form"}> <!--顯示新增表單--> <{elseif $now_op=="honor_modify_form"}> <!--顯示修改表單--> <{else}> <!--顯示資料列表--> <{/if}>
include_once XOOPS_ROOT_PATH."/modules/" . $xoopsModule->getVar("dirname") . "/class/admin.php" ; $index_admin = new ModuleAdmin() ; $admin_title=$index_admin->addNavigation('檔名.php') ; $xoopsTpl->assign("admin_title" , $admin_title);