updating database update

This commit is contained in:
jakani24
2024-02-17 21:50:15 +01:00
parent fcc7a19ec3
commit e20acf76e5
2 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
// Path to the folder
$folderPath = '/var/www/html/database_srv';
// Get a list of all files in the folder
$files = scandir($folderPath);
// Subtract 16*16 from the total number of files
$totalFiles = count($files) - (16 * 16);
// Calculate the percentage
$percentage = ($totalFiles / 485) * 100;
// Ensure the percentage is within the range 0-100
$percentage = max(0, min(100, $percentage));
// Display the percentage
echo round($percentage, 2);
?>