Initial commit

This commit is contained in:
2026-02-14 19:47:21 +01:00
parent fd2d3cee8b
commit 6f043386db
447 changed files with 114470 additions and 1024 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
require_once("../helper.php");
$qry = "SELECT name, id FROM sensors";
$mysql = new mysqli($mysql_server, $mysql_solarUser, $mysql_solarPass, $mysql_solarDB);
$result = mysqli_query($mysql, $qry);
while($row = $result->fetch_assoc()){
echo "<option value='".$row["id"]."'>".$row["name"]."</option>";
}
?>