You have to load it into an array first i think
The $_POST['firstname'] contains an array
so you can also loop through the array
if(isset($_POST['firstname'])){
$myString = '';
foreach($_POST['firstname'] as $myName){
$myString .= $myName . ", ";
}
echo $myString;
}
or assign it to an array and then reference the index.
$myArray = $_POST['firstname'];
echo $myArray[3];