Is there a way to store the time when a page is loaded in a variable?
This is what I got:
<?php
$time = time();
echo "Page loaded:" . time() ?>
However this doesn't do what I want, it shows the current time, not the time when the page was loaded.
Any hints on how to do this is highly appreciated! :)