Remove Client Entry:
List of Client information:
';
}
$folder = "./Temp-Client/*.php";
$files = glob($folder);
usort($files, function($a, $b) {
return filemtime($a) < filemtime($b);
});
foreach($files as $file) {
$modified = filemtime($file);
$modified_plus_two_hours = strtotime("+2 hours", $modified);
$contents = file_get_contents($file);
// Split the contents by new line
$lines = explode("\n", $contents . "\n" . "Last modified on: " .date("F d, Y H:i", $modified_plus_two_hours). "\n");
foreach ($lines as $line) {
// Add each line to your HTML, separated by a line break
echo $line . '
';
//echo "";
}
}
?>