Hi all
I need to be able to deduct a set number of minutes from the current time:
$timenow = date('H:i:s');
So if the time to be deducted is 30 minutes (for example), how would I change $timenow to show this deduction?
Many thanks Doug
$thirtyMinutesAgo = date("H:i:s", time() - 30*60);
That's great, thanks for the prompt response.