I want split a string using PHP to get a individual date info.
For example:
$date = \'08/05/2010\';
would create the varables
if that's your example, you could explode it into an array.
$array = explode('/', $date);