Thanks for replying, but this was not exactly what i am having trouble. I am able do store the date on the Db by using 3 different text boxes like this :
[13] day [08] month [2004] year
the '[]' being the textboxes and the value inside it, the value that would be posted to the php script to process. Later i would get the date together by using a '.', like this :
assign the $year , $month and $day variables to the posted values using the $http_Vars_post or whatever...and ...
$fulldate = ("$year"."-"."$month"."="."day") ;
Up to this point, it works, but to retrieve the data on another format is where the problem lies. Should i use a special function or there's a solution inside php ?