I'm not too clear on what you are trying to say, but here might be a cheap way of displaying your results:
<?
$this_date = "12/11/2002";
//echo date("m/d/Y",$this_date);
list($mon,$day,$year) = split('[/]', $this_date);
echo ("$mon/$day/$year"); //or whatever format you want
?>