q4.php 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. if(!defined('InEmpireCMS'))
  3. {
  4. exit();
  5. }
  6. ?><table width='100%' align=center cellpadding=3 cellspacing=1 class=tableborder>
  7. <tr>
  8. <td width=16% height=25 bgcolor=ffffff>作品名(*)</td>
  9. <td bgcolor=ffffff><input name="title" type="text" size="42" value="<?=$ecmsfirstpost==1?"":DoReqValue($mid,'title',stripSlashes($r[title]))?>">
  10. </td>
  11. </tr>
  12. <tr>
  13. <td width='16%' height=25 bgcolor='ffffff'>关键字</td>
  14. <td bgcolor='ffffff'>
  15. <input name="keyboard" type="text" size=42 value="<?=stripSlashes($r[keyboard])?>">
  16. <font color="#666666">(多个请用&quot;,&quot;隔开)</font>
  17. </td>
  18. </tr>
  19. <tr>
  20. <td width=16% height=25 bgcolor=ffffff>作品预览图</td>
  21. <td bgcolor=ffffff><input type="file" name="titlepicfile" size="45">
  22. </td>
  23. </tr>
  24. <tr>
  25. <td width=16% height=25 bgcolor=ffffff>作者</td>
  26. <td bgcolor=ffffff><input name="flashwriter" type="text" id="flashwriter" value="<?=$ecmsfirstpost==1?"":DoReqValue($mid,'flashwriter',stripSlashes($r[flashwriter]))?>" size="42">
  27. </td>
  28. </tr>
  29. <tr>
  30. <td width=16% height=25 bgcolor=ffffff>作者邮箱</td>
  31. <td bgcolor=ffffff><input name="email" type="text" id="email" value="<?=$ecmsfirstpost==1?"":DoReqValue($mid,'email',stripSlashes($r[email]))?>" size="42">
  32. </td>
  33. </tr>
  34. <tr>
  35. <td width=16% height=25 bgcolor=ffffff>文件大小</td>
  36. <td bgcolor=ffffff><input name="filesize" type="text" id="filesize" value="<?=$ecmsfirstpost==1?"":DoReqValue($mid,'filesize',stripSlashes($r[filesize]))?>" size="42">
  37. <select name="select" onchange="document.add.filesize.value+=this.value">
  38. <option value="">单位</option>
  39. <option value=" MB">MB</option>
  40. <option value=" KB">KB</option>
  41. <option value=" GB">GB</option>
  42. <option value=" BYTES">BYTES</option>
  43. </select></td>
  44. </tr>
  45. <tr>
  46. <td width=16% height=25 bgcolor=ffffff>上传Flash(*)</td>
  47. <td bgcolor=ffffff><input type="file" name="flashurlfile" size="45">
  48. </td>
  49. </tr>
  50. <tr>
  51. <td width=16% height=25 bgcolor=ffffff>Flash规格</td>
  52. <td bgcolor=ffffff><input name="width" type="text" id="width" value="<?=$ecmsfirstpost==1?"600":DoReqValue($mid,'width',stripSlashes($r[width]))?>" size="6">
  53. *<input name="height" type="text" id="height" value="<?=$ecmsfirstpost==1?"450":DoReqValue($mid,'height',stripSlashes($r[height]))?>" size="6">
  54. <font color="#666666">(宽度*高度)</font></td>
  55. </tr>
  56. <tr>
  57. <td width=16% height=25 bgcolor=ffffff>作品简介(*)</td>
  58. <td bgcolor=ffffff><textarea name="flashsay" cols="60" rows="10" id="flashsay"><?=$ecmsfirstpost==1?"":DoReqValue($mid,'flashsay',stripSlashes($r[flashsay]))?></textarea>
  59. </td>
  60. </tr>
  61. </table>