I want split a string using PHP to get a individual date info.
For example:
$date = \'08/05/2010\';
would create the varables
list($month, $day, $year) = explode('/', $date);