-
Notifications
You must be signed in to change notification settings - Fork 0
/
matiere.php
65 lines (54 loc) · 1.85 KB
/
matiere.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
<!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
$matiere = $_POST["matiere"];
if(isset($matiere)){
echo "Vous allez accéder aux fichiers en rapport avec la matière : ".$matiere.'.'.'<br><br>';
}
// Préparation et affichage liste déroulante
echo '<p>La matière choisie est elle une spécialité ? (Par défaut, répondre Non.) </p>';
// if not (isset($_POST["matiere"])){
echo '<form name="optn" method="post" action="optn.php?var='.$matiere.'">';
$optns = ['Non','Oui'];
$liste = '<select id="optn" name="optn">';
// echo '<form id="optn" method="POST" action="optn.php?var='.$matiere.'"> ';
// Pour chaque matière :
foreach($optns as $optn){
$liste .= '<option value="'.$optn.'">'.$optn.'</option>';
}
$liste .= '</select>';
echo $liste;
echo '<br><br><input name="OK" type="submit" value="Valider"><br><br><br>';
// }
echo '</form>';
// Affichage fichiers
$dossier = 'files';
$iterator = new DirectoryIterator($dossier);
// $files = array();
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
//echo $file.'<br>';
$name = substr($file, 0, strlen($file)-24 );
//echo $name.' '.$matiere.'<br>';
if($name==$matiere){
echo '<li><a href="./files/'.$file.'">'.$file.'</a></li><br>';
}
echo '</ul>';
}
}
?>
</body>
</html>