Folder reorganize 1

This commit is contained in:
Rucus
2026-02-17 12:44:37 -06:00
parent ec99d85bc2
commit f0ae0ab905
17427 changed files with 2071 additions and 1059030 deletions

14
includes/westtotal.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
include("../dbinfo.php");
$con=mysqli_connect($host,$username,$password,$database);
$query = "SELECT DISTINCT WestTotal FROM mill_ytd_totals ORDER BY ID DESC LIMIT 1";
$result=mysqli_query($con,$query);
$include1=mysqli_fetch_array($result,MYSQLI_ASSOC);
mysqli_close($con);
?>
<?php echo round($include1['WestTotal']); ?>