7-3
上課範例:index.php
004 | include_once "header.php" ; |
005 | include_once "up_file.php" ; |
006 | $xoopsOption [ 'template_main' ] = "contact_index_tpl.html" ; |
011 | function list_contact(){ |
012 | global $xoopsDB , $xoopsModule , $isAdmin ; |
014 | $jquery =get_jquery(); |
020 | <script type= 'text/javascript' > |
021 | $(document).ready( function (){ |
023 | $.post( 'ajax.php' , function (data){ |
024 | $( '#menu1' ).html(data); |
025 | $.post( 'ajax.php' , {parent_gsn: $( '#menu1' ).val()} , function (data){ |
026 | $( '#menu2' ).html(data); |
032 | $( '#menu1' ).change( function (){ |
033 | $.post( 'ajax.php' , {parent_gsn: $( '#menu1' ).val()} , function (data){ |
034 | $( '#menu2' ).html(data); |
039 | $( '#menu2' ).change( function (){ |
046 | function contact_list(){ |
047 | $.post( 'ajax.php' , {gsn: $( '#menu2' ).val()} , function (data){ |
048 | $( '#contact_list' ).html(data); |
053 | <select id= 'menu1' ></select> |
054 | <select name= 'gsn' id= 'menu2' ></select> |
056 | <table summary= 'list_table' id= 'tbl' style= 'width:100%;' > |
066 | <tbody id= 'contact_list' > |
071 | <td colspan=11 class = 'bar' > |
078 | $main =div_3d( "" , $main , "corners" ); |
084 | function show_one_contact( $sn = "" ){ |
085 | global $xoopsDB , $xoopsModule , $isAdmin ; |
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 ); |
098 | foreach ( $all as $k => $v ){ |
103 | $cate =get_contact_cate( $gsn ); |
107 | $photo_file =get_pic_file( 'photo' , $sn , 2 ); |
108 | $all_file =show_files( 'files' , $sn , ture , '' , true , true); |
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> |
121 | $main =div_3d( "{$cate['title']} / {$name}" , $data , "corners" ); |
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' ]); |
136 | $main =list_contact(); |
138 | $main =show_one_contact( $sn ); |