65725b13
Guillaume
MAJ
|
1
2
|
<?php
session_start();
|
6b916214
Guillaume
Test Graphe
|
3
4
5
6
7
8
9
10
|
$nom = $_POST['nom'];
$nombre = $_POST['nombre'];
$start = $_POST['start-date'];
$end = $_POST['end-date'];
if(($end == NULL) || ($end < $start)) {$e = date_max(); $end = $e['max'];}
else $end = $end." 23:59:59";
if($start == NULL) {$s = date_min(); $start = $s['min'];}
else $start = $start." 00:00:00";
|
65725b13
Guillaume
MAJ
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
?>
<!DOCTYPE html>
<html>
<head>
<?php include("head.php"); ?>
</head>
<!-- Contenu du site -->
<body>
<?php
include("header.php");
if(isset($_SESSION['Login'], $_SESSION['Password']))
{
|
f4782e65
Guillaume
MAJ Graphe
|
25
26
27
28
|
?>
<div class="row">
<div class="col-8 col-md-8 offset-md-2 offset-2">
<br/>
|
ab15bd74
Guillaume
Test Graphe
|
29
|
<h1 style="margin-bottom:20px; margin-top:30px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="fas fa-chart-line"></i> Graphe du capteur</h1>
|
f4782e65
Guillaume
MAJ Graphe
|
30
|
<br/>
|
6b916214
Guillaume
Test Graphe
|
31
|
<img src="graphe.php?nom=<?php echo $nom;?>&nombre=<?php echo $nombre;?>&start=<?php echo $start;?>&end=<?php echo $end;?>" alt="graphe">
|
f4782e65
Guillaume
MAJ Graphe
|
32
33
34
|
</div>
</div>
<?php
|
65725b13
Guillaume
MAJ
|
35
36
37
38
39
40
41
42
|
}
else
{
include("formConnexion.php");
}
?>
</body>
</html>
|