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
|
<?php // new first // for write welcome page // the picture include in web_name -> first_picture as main.jpg and button.jpg
// there is 2 choice // first - auto redirec to first page in main // second - show picture and button for click to main // @author PanDaRianZ on 30/11/2008
$navig["first_page_edit"] = "แก้ไขหน้าแรก"; navigator($navig); echo "<br/>"; bar_header ("แก้ไขหน้าแรก"); echo "<br/>"; ?> <form name='change_page' method='post' action='index.php?mod=first_page_edit_output&path=welcome_page' enctype="multipart/form-data"> <table width="98%" border="0" align="center" cellpadding="1" cellspacing="3">
<tr height="40"> <td><div align="left"><img src='coremain/images/marker.gif'> <strong>เลือกประเภท</strong></div></td> <td><div align="left"> <input name="page_type" type="radio" size="50" value='1' checked='checked'> ข้ามหน้าแรก<input name="page_type" type="radio" size="50" value='2'> หน้าแรกมีรูป</div></td> </tr> <tr height="40"> <td><div align="left" colspan='2'><font color="red">สำหรับหน้าแรกที่เป็นรูป</font></td> </tr> <tr height="40"> <td><div align="left"><img src='coremain/images/marker.gif'> <strong>เลือกรูปหลัก</strong></div></td> <td><div align="left"> <input name="main_pic" type="file" size="50"></div></td> </tr> <tr height="40"> <td><div align="left"><img src='coremain/images/marker.gif'> <strong>เลือกรูปสำหรับปุ่ม</strong></div></td> <td><div align="left"> <input name="sub_pic" type="file" size="50"></div></td> </tr> <tr height="40"> <td><div align="left"><img src='coremain/images/marker.gif'> <strong>ใส่สีพื้นหลัง</strong></div></td> <td><div align="left"> <input name="bg" type="text" size="50" value="#FFFFFF"> * ตย #FF0000</div></td> </tr> </tr> <tr height="40"> <td colspan='2' align='center'><input type='submit' name='submit_edit' value='แก้ไขหน้าแรก'></td> </tr> </table> </form>
|