forked from borisbrodski/sevenzipjbinding
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfiles.php
89 lines (78 loc) · 2.44 KB
/
files.php
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="description" content="Database List">
<meta http-equiv="Pragma" content="no-cache">
<link href="styles.css" rel="stylesheet" type="text/css">
<title>7-Zip-JBinding release assemble and test files</title>
</head>
<body>
<h1>7-Zip-JBinding release assemble and test files</h1>
<table border="1" style="font-size: 13;">
<tr>
<td width="100"> </td>
<td>Id</td>
<td>File name</td>
<td>Size</td>
<td>Timestamp</td>
<td>IP</td>
<td>Description</td>
</tr>
<tr>
</tr>
<?php
$link = mysql_connect('mysql-s', 's210915rw', 'HeMySQ15');
if (!$link) {
die('DB connection error: ' . mysql_error());
}
mysql_select_db("s210915_main");
$idToDelete = $_GET["rm"];
if ($idToDelete) {
$getFilenameQuery = "SELECT filename FROM files WHERE id = " . addslashes($idToDelete);
$result = mysql_query($getFilenameQuery) or die("Error. Query 1 failed. " . mysql_error() . "\n");
$row = mysql_fetch_array($result);
if ($row) {
list($filenameToDelete) = $row;
$deletequery = "DELETE FROM files WHERE filename = '". addslashes($filenameToDelete) . "'";
mysql_query($deletequery) or die("Error. Query 2 failed. " . mysql_error() . "\n");
}
mysql_free_result($result);
}
$files = mysql_query("SELECT f1.id, f1.filename,
(SELECT SUM(OCTET_LENGTH(content)) FROM files f2 WHERE f1.filename = f2.filename) as `size`,
f1.createtimestamp, f1.ip, f1.description, md5ok
FROM files f1
WHERE `chunk` = 1 ORDER BY `filename`") or die("Error. Query 3 failed.\n");
while ($file = mysql_fetch_array($files)) {
list($id, $name, $size, $timestamp, $ip, $description, $md5ok) = $file;
if (!$description) {
$description = "<i>no description</i>";
}
?>
<tr>
<td valign="middle">
<form method="get"><input type="submit" value="-"
style="font-size: 8;" />
<?php
if (!$md5ok) {
echo "<b><i>ERROR</i></b>";
} ?>
<input type="hidden" name="rm"
value="<?php echo $id ?>" /></form>
</td>
<td><?php echo $id ?></td>
<td><a href="download.php?filename=<?php echo urlencode($name) ?>"><?php echo $name ?></a></td>
<td><?php echo $size ?></td>
<td><?php echo $timestamp ?></td>
<td><?php echo $ip ?></td>
<td><?php echo $description ?></td>
</tr>
<?php
}
mysql_free_result($votechoices);
mysql_close($link);
?>
</table>
</body>
</html>