Ok a date saves into a db and i want to split it.
this is how it goes into the db
DD/MM/YYYY
and i want it to split so like
$DD = "DD";
$MM = "MM";
$YYYY = "YYYY";
eg today
21/08/2006
$DD ="21";
$MM = "08";
$YYYY = "2006";
Is there any way of doing this?
Thanks!
this is how it goes into the db
DD/MM/YYYY
and i want it to split so like
$DD = "DD";
$MM = "MM";
$YYYY = "YYYY";
eg today
21/08/2006
$DD ="21";
$MM = "08";
$YYYY = "2006";
Is there any way of doing this?
Thanks!
