X-Git-Url: https://git.rvb.name/weathermon.git/blobdiff_plain/065f212afe549f1dfc2fee1e42349b725d8e40c5..4177ee347c6a063ac3e115d5419edfc2ae5d67fe:/web/graphs.php
diff --git a/web/graphs.php b/web/graphs.php
new file mode 100644
index 0000000..dfc7450
--- /dev/null
+++ b/web/graphs.php
@@ -0,0 +1,53 @@
+
+
+
+
+
+ WeatherMon (ÐоÑледние 24 ÑаÑа)
+
+
+
+
+ false)))) {
+ die($err);
+ }
+
+$db -> exec('SET CHARACTER SET utf8');
+
+$q = $db -> prepare(
+ 'select
+ distinct v.sensor_id,s.s_description,p.id as param_id,p.st_description
+ from
+ sensor_values v,st_parameters p,sensors s
+ where
+ v.timestamp>adddate(now(), -1)
+ and v.sensor_id=s.id
+ and s.st_id=p.st_id
+ and p.id>=0
+ order by s_description,st_description'
+ );
+$q -> execute();
+
+while ($row = $q -> fetch(PDO::FETCH_ASSOC)) {
+
+ echo ''.$row['s_description'].'/'.$row['st_description'].'
';
+?>
+
+
+ÐÑÑ
ивнÑе даннÑе
+
+ÐаÑÑÑойки
+
+
\ No newline at end of file