I have a date coming in from a php form and want to split it into
$Day = $Array["Day"];
$Month = $Array["Month"];
$Year = $Array["Year"];
It comes in via
$ArrivDate = $Array["ArrivDate"];
in the format
yyyy-mm-dd
How can I split the date coming in to the single variable above