Hi
While inserting Your date format should be YYYY-MM-DD H:i:s
date('Y-m-d H:i:s') should be used for inserting.
and while fetching You should use date_format function of mysql like below:
SELECT DATE_FORMAT(date,'%D-%m-%Y') as date from table;
Hope this helps
Addy