I have a string eg 'Jan 4 1982' that I need to convert into a mysql date (yyyy-mm-dd) is there a function to do this or can anyone give me a snipplet of theirs?
Thanks in advance, Travis Harris
<? echo date("Y-m-d",strtotime('Jan 4 1982')); ?>