I am using $date = date(\"D M d, Y G:i\");.
$date = date(\"D M d, Y G:i\");
When I echo $date, it shows the correct date/time. Now I need this as an string.
$date
I have tr
$date = 'Today is '.date("D M d, Y G:i", time()); echo $date;