add all files

This commit is contained in:
Rucus
2026-02-17 09:29:34 -06:00
parent b8c8d67c67
commit 782d203799
21925 changed files with 2433086 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
include("dbinfo.php");
$con=mysqli_connect($host,$username,$password,$database);
$query = "SELECT AVG(wtonshr) AS rate FROM (SELECT wtonshr FROM milling ORDER BY id DESC LIMIT 600) tbl";
$result=mysqli_query($con,$query);
$roww24hravg=mysqli_fetch_array($result, MYSQLI_ASSOC);
mysqli_close($con);
echo round($roww24hravg['rate'],0)*24;
?>