The datepicker I'm using passes the date to a php script on form submit.
The URL parameter is as follows - datepicker1=12%2F09%2F2014
I can store 12%2F09%2F2014 in a variable.
$datepicker1 = $_GET['datepicker1'];
I also have 3 other variables namely: $day $month $year
How do add individual day, month, and year to their respective variables by extracting them from variable $datepicker1?