国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
2.5KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>图片浏览器</title>
  6. <link href="css/base.css" rel="stylesheet" type="text/css">
  7. <script language="javascript">
  8. function getPic(str)
  9. {
  10. var ss = new Array(3);
  11. ss = str.split("@");
  12. window.opener.document.form1.imgsrc.value=ss[0];
  13. window.opener.document.form1.imgwidth.value=ss[1];
  14. window.opener.document.form1.imgheight.value=ss[2];
  15. window.opener.document.form1.picview.src=ss[0];
  16. window.opener=true;
  17. window.close();
  18. }
  19. </script>
  20. </head>
  21. <body leftmargin="0" topmargin="0">
  22. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  23. <form name="form1">
  24. <tr>
  25. <td height="10" colspan="<?php echo $listSize?>"></td>
  26. </tr>
  27. <tr>
  28. <td colspan="<?php echo $listSize?>">
  29. <table width="98%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
  30. <tr>
  31. <td width="4%" align="center" bgcolor="#F9F9F7" height="24"><img src="images/file_dir.gif" width="16" height="16"></td>
  32. <td width="55%" align="center" bgcolor="#F9F9F7"><input name="activepath" type="text" id="path" size="30" style="height:15pt" value="<?php echo $activepath?>"></td>
  33. <td width="20%" bgcolor="#F9F9F7">
  34. <table width="100%" border="0" cellspacing="1" cellpadding="0">
  35. <tr>
  36. <td width="6%">&nbsp;</td>
  37. <td width="44%"><input name="imageField" type="image" src="images/next.gif" width="52" height="20" border="0" style="border:0;height:20"></td>
  38. <td width="50%"><a href="file_manage_main.php?activepath=<?php echo $activepath?>"><img src="images/file_view.gif" width="60" height="20" border="0"></a></td>
  39. </tr>
  40. </table></td>
  41. <td width="22%" bgcolor="#F9F9F7">
  42. <table width="100%" border="0" cellspacing="1" cellpadding="0">
  43. <tr>
  44. <td width="18%" align="right"><img src="images/file_topdir.gif" width="18" height="17"></td>
  45. <td width="82%"><?php GetPrePath($activepath); ?></td>
  46. </tr>
  47. </table></td>
  48. </tr>
  49. </table></td>
  50. </tr>
  51. <tr><td height="4" colspan="<?php echo $listSize?>"></td></tr>
  52. <?php ListPic($truePath,$activepath); ?>
  53. </form>
  54. </table>
  55. </body>
  56. </html>