Hi there.. as i m noob in php i ve found a function in the database section and used it...
i used the NOW() function. so i got this:
104128/210104/2005
10:41:28 i think is the time
2005 year
but.. wth is 210104? π
And how can i convert it to something like:
28/02/2005 10:41
Thanx for any help π
Edit:
Omg i need to sleep.. i forgot that i was using a function to display the data:
$day = substr($date ,8,10);
$m = substr($date,5,-3);
$yr = substr($date ,0,4);
$date = $day."/".$m."/".$yr;
is there another way to convert it? and how does the substr() function works?
Thanxπ