1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
<?php // Status Package Module $status_module=select_query("status_module","cms_status_module","id","25"); if($status_module[0]!=1) { fieldset_no_module(); }
$navig['help_s1']="ร้องทุกข์"; $navig['help_s1_full']="รายละเอียดการร้องทุกข์"; navigator($navig); print"<br>"; bar_header("รายละเอียดการร้องทุกข์"); // Bar_Header fieldset_top("ร้องทุกข์"); print "<br>"; if($p_id_help!="") { $id_help=trim($p_id_help); }
// แสดงเนื้อหาข่าวประชาสัมพันธ์ echo"<table width='100%' border='0' cellspacing='1' align='center' cellpadding='0'>"; $data=select_query("*","cms_help_s1","id_help",$id_help); { echo" <tr height=40>"; echo"<td width='160'>"; echo " <img src='core_main/images/marker.gif'> <b>หัวข้อร้องทุกข์</b>"; echo"</td>"; echo "<td>$data[topic]<br></td>"; echo"</tr>";
echo" <tr height=40>"; echo"<td valign=top>"; echo " <img src='core_main/images/marker.gif'> <b>รายละเอียด</b>"; echo"</td>"; echo "<td>$data[fulltexts]<br></td>"; echo"</tr>";
echo" <tr height=40>"; echo"<td>"; echo " <img src='core_main/images/marker.gif'> <b>ชื่อผู้ร้อง</b>"; echo"</td>"; echo "<td>$data[who_help]<br></td>"; echo"</tr>";
echo" <tr height=40>"; echo"<td>"; echo " <img src='core_main/images/marker.gif'> <b>ที่อยู่ผู้ร้อง</b>"; echo"</td>"; echo "<td>$data[address_help]<br></td>"; echo"</tr>"; echo" <tr height=40>"; echo"<td>"; echo " <img src='core_main/images/marker.gif'> <b>โทรศัพท์ผู้ร้อง</b>"; echo"</td>"; echo "<td>$data[tel]<br></td>"; echo"</tr>";
echo" <tr height=40>"; echo"<td>"; echo " <img src='core_main/images/marker.gif'> <b>อีเมล์ผู้ร้อง</b>"; echo"</td>"; echo "<td>$data[email]<br></td>"; echo"</tr>";
echo" <tr height=40>"; echo"<td>"; echo " <img src='core_main/images/marker.gif'> <b>วัน/เวลาที่ร้อง</b>"; echo"</td>"; echo "<td>$data[date_help]<br></td>"; echo"</tr>";
echo" <tr height=40>"; echo"<td>"; echo " <img src='core_main/images/marker.gif'> <b>หมายเลข IP ผู้ร้อง</b>"; echo"</td>"; echo "<td>$data[ip]<br></td>"; echo"</tr>";
if($data[files]!=""){ echo" <tr height=40>"; echo"<td>"; echo " <img src='core_main/images/marker.gif'> <b>เอกสารประกอบ</b>"; echo"</td>"; echo "<td><a href='$_SESSION[web_name]/mainfile/$data[files]' target=blank>ดาวน์โหลด</a><br></td>"; echo"</tr>"; } } /* echo" <tr height=40>"; echo "<td align=center colspan=2><b><a href='index.php?mod=help_s1&path=help_s1&idss=$data[id_help]'>คลิกที่นี่ --> หากดำเนินการเรียบร้อยแล้ว</b></td>"; echo"</tr>"; */ echo"</table>"; fieldset_down(); ?>
|