How do I convert 21-NOV-00 to 21-11-2000
I think it is something to do with date() and mktime() functions, not sure
Thanks
$converted_date = date("d-m-Y",strtotime("21-NOV-00"));
<? $date = '21-NOV-00'; echo date ('d-m-Y', strtotime ($date)); ?>