I usually make a field named "current_date" ( field-type is date ) in the table row, and have the insert query use 'now()' to insert the date in the field. Then display it as
$current_date=$date;
$date = Date("m-d-Y");
or
$date = Date("d-m-Y");
Don't know if its the best way but it works.