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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
<?php if($_SESSION[admin_web]!="admin") { permission_fail(); } // Status Package Module $status_module=select_query("status_module","cms_status_module","id","13"); if($status_module[0]!=1) { fieldset_no_module(); } $navig['manage_theme']="เปลี่ยนหน้ากาก"; navigator($navig); echo"<br>"; bar_header("เปลี่ยนหน้ากาก"); // Bar_Header fieldset_top("เปลี่ยนหน้ากาก"); include("function_box.php"); ?>
<form name="form1" method="post" action="index.php?mod=manage_theme&path=theme"> <table width="98%" border="0" cellpadding="0" cellspacing="0" align=center>
<?php
// #####################Row 1 Colum 1 - 2 ######################## open1(); manage_box("themes1.jpg"); if($_SESSION['themes_']=="v01") { check("v01","1"); } else { no_check("v01","1"); }
close1(); manage_box("themes2.jpg"); if($_SESSION['themes_']=="v02") { check("v02","2"); } else { no_check("v02","2"); } close2(); spech();
// #####################Row 2 Colum 1 - 2 ######################## open1(); manage_box("themes3.jpg"); if($_SESSION['themes_']=="v03") { check("v03","3"); } else { no_check("v03","3"); }
close1(); manage_box("themes4.jpg"); if($_SESSION['themes_']=="v04") { check("v04","4"); } else { no_check("v04","4"); } close2(); spech();
// #####################Row 3 Colum 1 - 2 ######################## open1(); manage_box("themes5.jpg"); if($_SESSION['themes_']=="v05") { check("v05","5"); } else { no_check("v05","5"); }
close1(); manage_box("themes6.jpg"); if($_SESSION['themes_']=="v06") { check("v06","6"); } else { no_check("v06","6"); } close2(); spech();
// #####################Row 4 Colum 1 - 2 ######################## open1(); manage_box("themes7.jpg"); if($_SESSION['themes_']=="v07") { check("v07","7"); } else { no_check("v07","7"); }
close1(); manage_box("themes8.jpg"); if($_SESSION['themes_']=="v08") { check("v08","8"); } else { no_check("v08","8"); } close2(); spech();
// #####################Row 5 Colum 1 - 2 ######################## open1(); manage_box("themes9.jpg"); if($_SESSION['themes_']=="v09") { check("v09","9"); } else { no_check("v09","9"); }
close1(); manage_box("themes10.jpg"); if($_SESSION['themes_']=="v10") { check("v10","10"); } else { no_check("v10","10"); } close2(); spech();
// #####################Row 6 Colum 1 - 2 ######################## open1(); manage_box("themes11.jpg"); if($_SESSION['themes_']=="v11") { check("v11","11"); } else { no_check("v11","11"); }
close1(); manage_box("themes12.jpg"); if($_SESSION['themes_']=="v12") { check("v12","12"); } else { no_check("v12","12"); } close2(); spech();
// #####################Row 7 Colum 1 - 2 ######################## open1(); manage_box("themes13.jpg"); if($_SESSION['themes_']=="v13") { check("v13","13"); } else { no_check("v13","13"); }
close1(); manage_box("themes14.jpg"); if($_SESSION['themes_']=="v14") { check("v14","14"); } else { no_check("v14","14"); } close2(); spech();
?>
<tr><td colspan='2' align='center'><br><br><input type='submit' name='Submit' value='เปลี่ยนหน้ากาก' onmouseover=this.style.cursor='hand'></td></tr>
</table> </form> <?php fieldset_down();?>
|