Hi,
I'm struggling with formating a timestamp MySql value
I have the column :
$ldate that stores the timestamp value: 20050425145047
When i try to display that date on the website in a user friendly formst: DD/MM/YY
I use :
<?php
setlocale(LC_TIME,fr_BE);
print strftime("%e/%m/%Y",strtotime($row_rsjob['ldate']));
?>
Ive used this code before to format a date value (but it was not a timestamp)
this doesn't work, what it does is display today's date regardless of the date stored in the database.
Could you pls tell me how to format a timestamp into DD/MM/YY and if it must be there, with HH:MM to follow?
Many thanks,
Vinny