-
Notifications
You must be signed in to change notification settings - Fork 0
/
type.php
53 lines (44 loc) · 1.38 KB
/
type.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Annales - Institution des Chartreux</title>
<meta name="viewport" content="initial-scale=1.0,minimum-scale=1.0,maximum-scale=4.0,user-scalable=yes">
</head>
<body>
<h1><a href="./">Annales - Institution des Chartreux</a></h1>
<?php
$type = $_POST["type"];
if($type == "DS"){
echo "<p>Il s'agit de devoirs surveillés.</p><br>";
}else{
echo "<p>Il s'agit d'interrogations écrites.</p><br>";
}
// Affichage fichiers
$matiere = $_GET['var'];
if(isset($type)){
echo "Vous allez accéder aux fichiers en rapport avec : ".$matiere.'<br><br>';
}
$dossier = 'files';
$iterator = new DirectoryIterator($dossier);
echo '<br><p>Liste des fichiers disponibles avec vos critaires : </p>';
echo '<ul>';
foreach($iterator as $fichier){
// La fonction isDot retourne TRUE si l'élement courant est "." ou ".."
if(!$fichier->isDot()){
// Affiche le fichier avec le lien
$file = $fichier->getFilename();
// On ne garde que le nom de la matière
$name = substr($file, 0, strlen($file)-12 );
//echo $name.'<br><p>OK2</p><br>';
$nom = $matiere.'_'.$type;
//echo $nom.'<p>OK4</p>';
if($name == $nom){
echo '<li><a href="./files/'.$file.'">'.$file.'</a></li><br>';
}
echo '</ul>';
}
}
?>
</body>
</html>