国内流行的内容管理系统(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.

73 lines
2.6KB

  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. </head>
  8. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  9. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6">
  10. <tr>
  11. <td height="19" background="images/tbg.gif">
  12. <table width="96%" border="0" cellspacing="1" cellpadding="1">
  13. <tr>
  14. <td width="24%">
  15. <a href='sys_verifies.php'><b>文件效验</b></a>
  16. &gt;&gt;
  17. <strong>校验结果:</strong> 共有 <?php echo count($filelist); ?> 个文件不同
  18. </td>
  19. <td width="76%" align="right">
  20. </td>
  21. </tr>
  22. </table>
  23. </td>
  24. </tr>
  25. <tr>
  26. <td height="200" bgcolor="#FFFFFF" valign="top">
  27. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  28. <form action="sys_verifies.php?action=getfiles" method="post">
  29. <tr>
  30. <td class='bline2'> 恢复? </td>
  31. <td class='bline2'> 文件名(Ctrl+F查找) </td>
  32. <td class='bline2'> 校验方式 </td>
  33. <td class='bline2'> 最后修改时间 </td>
  34. <td class='bline2'> 指纹码/点击可浏览文件内容 </td>
  35. </tr>
  36. <?php
  37. foreach ($filelist as $key => $file)
  38. {
  39. ?>
  40. <tr>
  41. <td class='bline'>
  42. <input type="checkbox" name="refiles[]" value="<?php echo $file['filename'];?>" checked='1' />
  43. </td>
  44. <td class='bline'>
  45. <?php echo $file['filename']; ?>
  46. </td>
  47. <td class='bline'>
  48. <?php echo $file['method']; ?>
  49. </td>
  50. <td class='bline'>
  51. <?php echo $file['mtime']; ?>
  52. </td>
  53. <td class='bline'>
  54. <a href="sys_verifies.php?action=view&filename=<?php echo $file['turefile']; ?>" target="_blank" class='coolbg' title="标准效验码为: <?php echo $file['cthash']; ?>">
  55. <?php echo $file['localhash']; ?>
  56. </a>
  57. </td>
  58. </tr>
  59. <?php
  60. }
  61. ?>
  62. <tr>
  63. <td colspan="20" height='42'>
  64. <input type="submit" name="submit" value="从官方下载选中的文件并恢复" class='np coolbg' />
  65. </td>
  66. </tr>
  67. </table>
  68. </form>
  69. </td>
  70. </tr>
  71. </table>
  72. </body>
  73. </html>