There's not really a way to do this without fetching the timestamp
from a remote server. How does fetching the timestamp from your own
server slow down the system? You could just have the following in a
file called timestamp.php:
<? echo time(); ?>
And use makeRequest to get this value, which should be very little
overhead for an app. How often are you fetching this timestamp?
~Arne