Hi all quick question
using CC I am looking for a way to display the recordtime column in the format DD/MM/YY
I found the code below which will display the MM/DD/YYYY format
I have played with it to try and get it the way i need it but no joy.
anyone know how I can do this?
using CC I am looking for a way to display the recordtime column in the format DD/MM/YY
I found the code below which will display the MM/DD/YYYY format
<?php
$date=explode(' ',$MyRow->recordtime);
echo $date[("0")];
?>
I have played with it to try and get it the way i need it but no joy.
anyone know how I can do this?