I cannot use DateTime because of the version of PHP I am running. Can anyone suggest a way to get the equivalent value using strToTime or some other date function. I know this is probably an easy question but I am very rusty on dates in php.
i.e. something like
$date = strToTime('today');
where $date is a date that I can then manipulate by adding hours and so forth along these lines...
$start = $date->format('Y-m-d H:i:s');
$date->modify('+ 60 minutes');
$end = $date->format('Y-m-d H:i:s');
Thanks in advance for any suggestions.