On this - "next Thursday" is that next thursday or the next thursday ie: on wed will it show tomorrows time or the next week???
<?php
echo strtotime("now");
$timestamp = strtotime("now");
echo " ";
$str = date('l dS of F Y h:i:s A', $timestamp);
echo $str;
?>
<p>
<?php
echo strtotime("next Thursday"), "\n";
$timestamp = strtotime("next Thursday");
echo " ";
$str = date('l dS of F Y h:i:s A', $timestamp);
echo $str;
?>
<p>