Initial commit

This commit is contained in:
whoisfrost
2026-02-17 13:30:09 -06:00
commit f24a2e2235
404 changed files with 37425 additions and 0 deletions

13
includes/w15minavg.php Normal file
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 900) tbl";
$result=mysqli_query($con,$query);
$row3=mysqli_fetch_assoc($result);
mysqli_close($con);
?>
<?php echo round($row3['rate'],0); ?>