:::

7-3 上課範例:index.php

001<?php
002 
003/*-----------引入檔案區--------------*/
004include_once "header.php";
005include_once "up_file.php";
006$xoopsOption['template_main'] = "contact_index_tpl.html";
007/*-----------function區--------------*/
008 
009 
010//列出所有contact資料
011function list_contact(){
012    global $xoopsDB , $xoopsModule , $isAdmin;
013 
014    $jquery=get_jquery();
015 
016    //刪除確認的JS
017    $main="
018    $jquery
019     
020    <script type='text/javascript'>
021  $(document).ready(function(){
022   
023    $.post('ajax.php' , function(data){
024      $('#menu1').html(data);
025      $.post('ajax.php' , {parent_gsn: $('#menu1').val()} , function(data){
026        $('#menu2').html(data);
027        contact_list();
028      });
029    });
030 
031 
032    $('#menu1').change(function(){
033      $.post('ajax.php' , {parent_gsn: $('#menu1').val()} , function(data){
034        $('#menu2').html(data);
035        contact_list();
036      });
037    });
038 
039    $('#menu2').change(function(){
040      contact_list();
041    });
042 
043  });
044   
045  //去抓該分類的通訊錄
046  function contact_list(){
047    $.post('ajax.php' , {gsn: $('#menu2').val()} , function(data){
048      $('#contact_list').html(data);
049    });
050  }
051  </script>
052   
053    <select id='menu1'></select>
054    <select name='gsn' id='menu2'></select>
055     
056    <table summary='list_table' id='tbl' style='width:100%;'>
057    <tr>
058        <th>群組</th>
059        <th>姓名</th>
060        <th>電話</th>
061        <th>信箱</th>
062        <th>生日</th>
063        <th>地址</th>
064    </tr>
065 
066    <tbody id='contact_list'>
067    $all_content
068    </tbody>
069 
070    <tr>
071        <td colspan=11 class='bar'>
072 
073        </td>
074    </tr>
075    </table>";
076 
077    //raised,corners,inset
078    $main=div_3d("",$main,"corners");
079 
080    return $main;
081}
082 
083//以流水號秀出某筆contact資料內容
084function show_one_contact($sn=""){
085    global $xoopsDB , $xoopsModule , $isAdmin;
086 
087    if(empty($sn)){
088        return;
089    }else{
090        $sn=intval($sn);
091    }
092 
093    $sql = "select * from `".$xoopsDB->prefix("contact")."` where `sn` = '{$sn}' ";
094    $result = $xoopsDB->query($sql) or redirect_header($_SERVER['PHP_SELF'],3, mysql_error());
095    $all=$xoopsDB->fetchArray($result);
096 
097    //以下會產生這些變數: $tel , $email , $name , $gsn , $sn , $birthday , $zip , $county , $city , $addr
098    foreach($all as $k=>$v){
099        $$k=$v;
100    }
101 
102 
103    $cate=get_contact_cate($gsn);
104     
105    //欄位 , 編號 , 是否縮圖 , 顯示模式 (空、filename、num) ,顯示描述,顯示下載次數
106  //$photo_file=show_files('photo' , $sn);
107  $photo_file=get_pic_file('photo' , $sn , 2 );
108  $all_file=show_files('files' , $sn , ture , '' , true , true);
109   
110    $data="
111    <table summary='list_table' id='tbl' style='width:100%;'>
112    <tr><th nowrap>電話</th><td>{$tel}</td></tr>
113    <tr><th nowrap>信箱</th><td>{$email}</td></tr>
114    <tr><th nowrap>生日</th><td>{$birthday}</td></tr>
115    <tr><th nowrap>地址</th><td>{$zip} {$county}{$city}{$addr}</td></tr>
116    <tr><th nowrap>相片</th><td><img src='{$photo_file}'></td></tr>
117    <tr><th nowrap>相關檔案</th><td>{$all_file}</td></tr>
118    </table>";
119 
120    //raised,corners,inset
121    $main=div_3d("{$cate['title']} / {$name}",$data,"corners");
122 
123    return $main;
124}
125/*-----------執行動作判斷區----------*/
126$op=empty($_REQUEST['op'])?"":$_REQUEST['op'];
127$sn=empty($_REQUEST['sn'])?"":intval($_REQUEST['sn']);
128$gsn=empty($_REQUEST['gsn'])?"":intval($_REQUEST['gsn']);
129$files_sn=empty($_REQUEST['files_sn'])?"":intval($_REQUEST['files_sn']);
130 
131 
132switch($op){
133 
134    default:
135  if(empty($sn)){
136    $main=list_contact();
137  }else{
138    $main=show_one_contact($sn);
139  }
140    break;
141}
142 
143/*-----------秀出結果區--------------*/
144module_footer($main);
145?>

:::

搜尋

QR Code 區塊

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

書籍目錄

展開 | 闔起

線上使用者

49人線上 (10人在瀏覽線上書籍)

會員: 0

訪客: 49

更多…