sys_verifies_verify.htm
2.55 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
<title>文件校验</title>
<link href='css/base.css' rel='stylesheet' type='text/css'>
</head>
<body background='images/allbg.gif' leftmargin='8' topmargin='8'>
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6">
<tr>
<td height="19" background="images/tbg.gif">
<table width="96%" border="0" cellspacing="1" cellpadding="1">
<tr>
<td width="24%">
<a href='sys_verifies.php'><b>文件效验</b></a>
>>
<strong>校验结果:</strong> 共有 <?php echo count($filelist); ?> 个文件不同
</td>
<td width="76%" align="right">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="200" bgcolor="#FFFFFF" valign="top">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<form action="sys_verifies.php?action=getfiles" method="post">
<tr>
<td class='bline2'> 恢复? </td>
<td class='bline2'> 文件名(Ctrl+F查找) </td>
<td class='bline2'> 校验方式 </td>
<td class='bline2'> 最后修改时间 </td>
<td class='bline2'> 指纹码/点击可浏览文件内容 </td>
</tr>
<?php
foreach ($filelist as $key => $file)
{
?>
<tr>
<td class='bline'>
<input type="checkbox" name="refiles[]" value="<?php echo $file['filename'];?>" checked='1' />
</td>
<td class='bline'>
<?php echo $file['filename']; ?>
</td>
<td class='bline'>
<?php echo $file['method']; ?>
</td>
<td class='bline'>
<?php echo $file['mtime']; ?>
</td>
<td class='bline'>
<a href="sys_verifies.php?action=view&filename=<?php echo $file['turefile']; ?>" target="_blank" class='coolbg' title="标准效验码为: <?php echo $file['cthash']; ?>">
<?php echo $file['localhash']; ?>
</a>
</td>
</tr>
<?php
}
?>
<tr>
<td colspan="20" height='42'>
<input type="submit" name="submit" value="从官方下载选中的文件并恢复" class='np coolbg' />
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</body>
</html>