Ok, I thought i was done, but I have one more question. I placed a quick update in all the pages that would be or could be visited. I do a quick update of datetime and it works great.
I am very familiar with cron's, but my main question is:
Is there a quick convert of the datetime value that I can check for 10 minutes later. I have done time conversions before:
$beghour = date(H) 3600;
$begmin = date(i) 60;
$begsec = date(s);
$begintime = $beghour + $begmin + $begsec;
$endhour = date(H) 3600;
$endmin = date(i) 60;
$endsec = date(s);
$endtime = $endhour + $endmin + $endsec;
$totaltime = $endtime - $begintime;
echo "$totaltime seconds";
Is this what I want to do, or something similar?