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
|
<?php
$navig['faq']=$data_name_menu_sub[name]; $navig['faq_full_page']="คำถาม-คำตอบ"; navigator($navig); echo "<br>"; bar_header("คำถาม-คำตอบ"); // Bar_Header fieldset_top("ถาม ตอบ");
// manage permission here
// end manage permission $result = select_query_object("*","cms_faq","id_faq",$_GET[fid]); echo"<br><table width='100%' border='0' align='center' cellpadding='1' cellspacing='1' bgcolor='$_SESSION[bg_textrun]'>"; echo" <tr bgcolor='white'>"; echo "<td align='left' width='100'> "; print_arr1(); echo " <b>คำถาม</b> :</td><td>$result->question</td>"; echo "</tr>"; echo" <tr height='50' bgcolor='white'>"; echo "<td align='left'> "; print_arr1(); echo " <b>คำตอบ</b> : </td><td>$result->answer</td>"; echo "</tr>"; echo "</table>"; fieldset_down(); ?>
|