HTML example:
You can use a foreach Loop to get all values that are set.
foreach ($_POST AS $k=>$v){ echo "$k is $v"; }
Your example
echo $_POST['email'].name; //output: email
wouldnt make sense, since you already know the name of the value you are accessing?