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
|
<? //require 'db_connect.php'; require 'check_login.php'; if ($logged_in <> 1) { header('Location: login.php'); return; } else { ?> <?php require("configure.php"); ?> <? $galleryimageid = $_GET['galleryimageid']; $gallerycatid = $_GET['gallerycatid']; ?> <html> <head> <link rel="stylesheet" href="main.css" type="text/css"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Admin Page</title> <script language="javascript" >
var i_sponsor = 10;
function addSponsor(){ i_sponsor++; document.getElementById('numSponsor').value = i_sponsor; var sponsorTable = document.getElementById('sponsorList'); var sponsorBody = sponsorTable.getElementsByTagName('tbody')[0]; var tablerow = document.createElement('tr'); var tdList = new Array(); tdList[0] =document.createElement('td'); tdList[0].innerHTML = " "+ i_sponsor +"."; tdList[0].innerHTML += " <input name=\"galleryimage"+i_sponsor +"\" type=\"file\" class=\"content\" size=\"50\" />"; for(i=0; i<tdList.length ;i++){ tablerow.appendChild(tdList[i]); sponsorBody.appendChild(tablerow); } } </script> </head> <body> <table border="0" cellpadding="1" cellspacing="1" width="100%"> <tr> <td class='pageheader' align="left"><b>新增</b></td> <td class='pageheader' align="right"><a href="mainssindex.php?mainssid=<? echo $mainssid?>" class="pageheader"><img src="images/iconCancel.jpg" width="32" height="32" border="0" align="absmiddle">取消</a></td> </tr> </table> <form action="mainssadd.php" method="post" name="addform" enctype="multipart/form-data"> <table border="0" cellpadding="0" cellspacing="2">
<tr><td class='content' align="right" valign="top">上載相片</td><td class='content' valign="top">: </td> <td class='content'> <table border="0" class="content" id="sponsorList"> <input type="hidden" name="sponsorNum" value=10 id="numSponsor"/> <tr> <td class="content"> 1. <input name="galleryimage1" type="file" class="content" size="50"></td> </tr> <tr> <td class="content"> 2. <input name="galleryimage2" type="file" class="content" size="50"></td> </tr> <tr> <td class="content"> 3. <input name="galleryimage3" type="file" class="content" size="50"></td> </tr> <tr> <td class="content"> 4. <input name="galleryimage4" type="file" class="content" size="50"></td> </tr> <tr> <td class="content"> 5. <input name="galleryimage5" type="file" class="content" size="50"></td> </tr> <tr> <td class="content"> 6. <input name="galleryimage6" type="file" class="content" size="50"></td> </tr> <tr> <td class="content"> 7. <input name="galleryimage7" type="file" class="content" size="50"></td> </tr> <tr> <td class="content"> 8. <input name="galleryimage8" type="file" class="content" size="50"></td> </tr> <tr> <td class="content"> 9. <input name="galleryimage9" type="file" class="content" size="50"></td> </tr> <tr> <td class="content">10. <input name="galleryimage10" type="file" class="content" size="50"></td> </tr> </table> </td></tr> <tr><td class='content' align="right" valign="top"> </td> <td class='content' valign="top"> </td> <td class='content'><input name="button" type="button" id="btnAdd" onClick="addSponsor()" value=" + " class='content'/></td></tr> <tr><td colspan="2"></td><td><br><br> <input type="submit" value=" 確定 " class='content'></td> </tr> </table> </form> </body> </html>
<? } ?> <? function getSelect($field1, $field2) { if ($field1 == $field2) { return "selected"; } else { return ""; } } ?>
|