19ae2416
jnduwamu
MAJ du site
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<?php include("head.php"); ?>
</head>
<!-- Contenu du site -->
<body>
<?php
include("header.php");
if(isset($_SESSION['Login'], $_SESSION['Password']))
{
?>
<div class="row">
<div class="col-6 col-md-6 offset-md-3 offset-3">
<br/>
|
39579493
root
MAJ Site
|
21
|
<h1 style="margin-bottom:20px; margin-top:70px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="fas fa-history"></i> Historique</h1>
|
19ae2416
jnduwamu
MAJ du site
|
22
|
<?php
|
36ef1f60
Guillaume
MAJ site
|
23
|
if(add($_POST['nom'], $_POST['type'], $_POST['raspberry'], $_POST['numero'], $_POST['unite'], $_POST['version']))
|
19ae2416
jnduwamu
MAJ du site
|
24
|
{
|
fe0eb67b
Guillaume
MAJ site
|
25
26
27
28
|
$arduino_simple = "[Arduino_init]\r\n";
$arduino_spi = "[Arduino_spi_init]\r\n";
$nucleo = "[Nucleo_init]\r\n";
|
1c58232e
root
MAJ site en lien ...
|
29
30
|
$setup = getSetup($_POST['raspberry']);
|
fe0eb67b
Guillaume
MAJ site
|
31
32
33
34
35
36
37
38
39
40
41
42
|
if($_POST['version'] == 0)
{
$ini = $arduino_simple;
}
elseif($_POST['version'] == 1)
{
$ini = $arduino_spi;
}
elseif($_POST['version'] == 2)
{
$ini = $nucleo;
}
|
1c58232e
root
MAJ site en lien ...
|
43
|
$ini = $ini.$_POST['raspberry']." capteur=".$_POST['numero']." setup=".$setup."\n";
|
fe0eb67b
Guillaume
MAJ site
|
44
|
file_put_contents('upload/inventaire.ini', $ini);
|
1c58232e
root
MAJ site en lien ...
|
45
|
setup($_POST['raspberry']);
|
19ae2416
jnduwamu
MAJ du site
|
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
?>
<div class="alert alert-success" role="alert">
Le capteur a bien été ajouté !
</div>
<meta http-equiv="Refresh" content="3;url=accueil.php" />
<?php
}
else
{
?>
<div class="alert alert-danger" role="alert">
Echec lors de l'ajout. Vérifiez vos informations !
</div>
<meta http-equiv="Refresh" content="3;url=ajoutCapteur.php" />
<?php
}
?>
</div>
</div>
<?php
}
else
{
include("formConnexion.php");
}
?>
</body>
</html>
|