-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (34 loc) · 1.38 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Annales - Institution des Chartreux</title>
<meta name="viewport" content="initial-scale=1,minimum-scale=1.0,maximum-scale=4.0,user-scalable=yes">
</head>
<body>
<h1><a href="./">Annales - Institution des Chartreux</a></h1>
<p>Aujourd'hui nous sommes le <?php date_default_timezone_set('Europe/Paris'); echo date('d/m/Y H:i:s'); ?>.</p> <br>
<p>Choisissez la matière : </p>
<?php
// if not (isset($_POST["matiere"])){
echo '<form name="matiere" method="post" action="matiere.php">';
$matieres = ['Allemand', 'Anglais', 'Arts-Plastiques', 'Chinois', 'Français', 'HG-EMC', 'Informatique', 'Italien', 'Mathématiques', 'Musique', 'Philosophie', 'Physique-Chimie', 'SVT', 'Technologie'];
$liste = '<select id="matiere" name="matiere">';
// echo '<form id="matiere" method="POST" action="matiere.php"> ';
// Pour chaque matière :
foreach($matieres as $matiere){
$liste .= '<option value="'.$matiere.'">'.$matiere.'</option>';
}
$liste .= '</select>';
echo $liste;
echo '<br><br><input name="OK" type="submit" value="Valider"><br><br><br>';
// }
echo '</form>';
?>
<br><br>
<h3><a href="./admin/index.php">Uploader des fichiers</a></h3><br><br><br><br><br><br>
<a href="https://github.com/thomaspujol69/Web_Annales">
<img src="./pics/github.png" alt="Github"/>
</a>
</body>
</html>