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
|
<?php $rowPerPage=20; if((!$_GET['page'])||($_GET['page']==1)){ $_GET['page']=1; $startRow=0; }else{ $startRow=($_GET['page']-1)*$rowPerPage; } #################################################### //------------------------------------ if($_GET['currID']){ $_POST['currID']=$_GET['currID'];} //--------------------------------------------------------------------------
?> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <link href="style.css" rel="stylesheet" type="text/css" />
<form action="<?php $_SERVER['PHP_SELF']?>" method="post" name="form1" enctype="multipart/form-data"> <table width="99%" border="0" align="center" cellpadding="2" cellspacing="2"> <tr class="red"> <td width="4%" height="25" align="center" bgcolor="#D9D9B3"><img src="images/black_icon/16x16/app_window.png" width="16" height="16" /></td> <td width="96%" bgcolor="#D9D9B3">xxxxxx
<input type="hidden" name="action" id="action" /> <input type="hidden" name="currID" id="currID" value="<?php echo $_POST['currID']?>" /> <input type="hidden" name="RmPic" id="RmPic" /> </td> </tr> <tr> <td colspan="2"> </td> </tr> <tr> <td colspan="2" class="txt10-black"> </td> </tr> <tr> <td colspan="2"> </td> </tr> </table> </form>
|