I the date is display DD/MM/YYYY. Next to this I would like to show the textual date. E.g Monday.
Code: Select all
<? echo $info['date']; ?>Code: Select all
[syntax=php][syntax=php]echo date("l");Any help given I will be very helpful
V
Moderator: General Moderators
Code: Select all
<? echo $info['date']; ?>Code: Select all
[syntax=php][syntax=php]echo date("l");Code: Select all
echo date("l", strtotime($info['date']));