35 lines
931 B
PHP
35 lines
931 B
PHP
|
<!DOCTYPE html>
|
||
|
<html lang="de"><meta charset="utf-8">
|
||
|
<head>
|
||
|
<title>Unsortierte Aufnahmen</title>
|
||
|
|
||
|
<link rel="stylesheet" href="../../../styles.php">
|
||
|
</head>
|
||
|
|
||
|
<body style="background-color: rgb(46,46,46); font-family: ubuntu">
|
||
|
<div style="background-image: linear-gradient(to top right, rgb(255,51,51), rgb(85,255,51), rgb(51,255,255), rgb(51,51,255)); color:white">
|
||
|
<br>
|
||
|
<p style="font-size: 32px">Unsortierte Aufnahmen</p>
|
||
|
<br>
|
||
|
|
||
|
<p>
|
||
|
<?php
|
||
|
$directory = "./";
|
||
|
chdir($directory);
|
||
|
array_multisort(array_map('filemtime', ($files = glob("*.*"))), SORT_DESC, $files);
|
||
|
|
||
|
$files = array_reverse($files);
|
||
|
|
||
|
foreach($files as $file) {
|
||
|
if ($file !== "." and $file !== "index.php") {
|
||
|
echo "<a href='$file'>$file</a>\n<br>\n";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|
||
|
<br>
|
||
|
</p>
|
||
|
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|