I can store the date in any format and get it back out, however, I need to get the day difference between to fields on the way back.
Do I need to convert 2002-11-1 into...
$thetime=mktime(0,0,0,11,1,2002);
$juliantime=date("z",$thetime);
to be able to get the exact day difference? Thanks...