The strtotime function only works with dates after Jan 1, 1970, so if your dates are before that, let me know, so I can show you how to explode() the date, and recompile it that way instead...
$date = "1982-05-06";
$date = date("n/j/Y", strtotime($date));
echo $date;