-
Notifications
You must be signed in to change notification settings - Fork 0
/
affichage_filtration_CSI.php
executable file
·69 lines (29 loc) · 1.4 KB
/
affichage_filtration_CSI.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
66
67
68
69
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="fr"><head><meta http-equiv="refresh" content="600">
<?php //~ Connection au serveur
include("./conf/configuration.php");
include("./include/LogWriter.class.php");
include("./include/util.php");
// instanciation du fichier de log
$logWriter = new LogWriter($_fichierDeLog);
$link = mysql_connect('localhost', 'opc','opc') or die('Impossible de se connecter : ' . mysql_error());
//~ Connection à la base de données
mysql_select_db('opc') or die('Impossible de sélectionner la base de données');
//recherche de la derniere valeur de ClO2 mesuré
//recherche de la derniere valeur de turbidite filtration CSII
?>
<title>filtration CSI</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="styles.css" rel="stylesheet" type="text/css"></head>
<body link="#993300" vlink="#993300">
<h1>Filtration</h1>
<!-- <table style="width: 100%; height: 20%;" border="1">
<tbody><tr>
<tr>
<td class="fond_bleu" align="center" width="20"><h1>ClO2 mesuré : <?php echo "$clm" ?> mg/L </h1></td>
</tr>
<tr>
<td class="fond_bleu" align="center" width="20"><h1>Turbidité : <?php echo "$turb" ?> NTU </h1></td>
</tr>
</tr>
-->
</body></html>