I need to access a value which is inside in a multidimensional array...
Suppose there is a form and where I takes all the form values inside an array named access..and I post the values into a different array.
$registrationArray = $_POST['access'];
Now I need to loop through this registration array and get values printed to the new variables...
Suppose this is the array $access = array (fname,lname,date,year,month)
How do I print the date,year,month values into different variable by looping through registration array..
Thanks in Advance