Files
NetAlertX/front/php/templates/build.php
Carlos V 56604f702f Create build.php
Created build.php file
Added new php code to search for build file and if it doesn't find it, it shows the file not found error
2023-08-07 17:16:20 +02:00

9 lines
183 B
PHP

<?php
$file = "/home/pi/pialert/front/buildtimestamp.txt";
if (file_exists($file)) {
echo date("Y-m-d", ((int)file_get_contents($file)));
} else {
echo "File not found";
}
?>