mirror of
https://github.com/BreizhHardware/AJAX.git
synced 2026-01-19 00:57:34 +01:00
13 lines
296 B
PHP
13 lines
296 B
PHP
<?php
|
|
// Generate timestamp.
|
|
$data = date('d/m/Y H:i:s');
|
|
|
|
// Send data to the client.
|
|
header('Content-Type: text/plain; charset=utf-8');
|
|
header('Cache-control: no-store, no-cache, must-revalidate');
|
|
header('Pragma: no-cache');
|
|
header('HTTP/1.1 200 OK');
|
|
echo $data;
|
|
exit;
|
|
?>
|