Hello everyone, I have a problem with the date that I can not solve, I added this feature in my lavalair
but I would like to translate the date with the days of the week Italian (lun,mar,mer instead of mon, thu, wen etc) How can I do? Thanks to anyone who helps me
PHP Code:
echo "last visit by $row[0] ";
$newtime =$row[1]+(6 *60 *60);
echo "<b>".date("D d M y - H:i:s a",$newtime)."</b><br/>";
Comment