PHP
67
servertime2 php
Guest on 10th June 2022 01:49:54 AM
<?php
header('Content-Type: text/xml');
header('Cache-control: no-cache');
echo "<?xml version=\"1.0\" ?>
<clock>
<timestring>It is ".date('H:i:s')." on ".date('M d, Y').".</timestring>
</clock>";
?>