Blame view

site/graphique.php 1.51 KB
65725b13   Guillaume   MAJ
1
2
  <?php
  session_start();
7bf48c8e   Guillaume   Test Graphe
3
4
5
6
7
8
9
10
11
  require_once("accesBase.php");
  $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
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  ?>
  <!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
26
27
                          ?>
  			<div class="row">
0071f5d7   root   MAJ
28
  				<div class="col-10 col-md-10 offset-md-1 offset-1">
f4782e65   Guillaume   MAJ Graphe
29
  					<br/>
39579493   root   MAJ Site
30
  					<h1 style="margin-bottom:20px; margin-top:60px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="fas fa-chart-line"></i> Graphe du capteur</h1>
bd08b8de   Guillaume   Test Graphe
31
  					<?php
487764be   root   Correction site
32
  					if(historyExist($nom) && $nombre > 1)
39579493   root   MAJ Site
33
34
35
36
37
38
39
40
41
42
43
44
  					{
  						echo "<img src='graphe.php?nom=$nom&nombre=$nombre&start=$start&end=$end' alt='graphe'>";
  					}
  					else
  					{
  						?>
  						<div class="alert alert-danger" role="alert">
  							Il n'y a pas assez de valeurs pour ce capteur !
  						</div>
  						<meta http-equiv="Refresh" content="5;url=rechercheGraphe.php" />
  						<?php
  					}
bd08b8de   Guillaume   Test Graphe
45
  					?>
f4782e65   Guillaume   MAJ Graphe
46
47
48
  				</div>
  			</div>
  			<?php
65725b13   Guillaume   MAJ
49
50
51
52
53
54
55
56
                  }
                  else
                  {
                          include("formConnexion.php");
                  }
                  ?>
          </body>
  </html>