Assuming there are 5 inputs in web form
if you want to have it in an order, you may use the dynamic variables or simply access the array explicitly
the_same1 the_same2 the_same3
since you know the names anyway, you can access them easily
$the_same = array();
for($i=1; ; $i++){
$tmp =$_REQUEST["the_same".$i]
if( empty($tmp) ){
// no more stuff
break;
}
$the_same[] = $tmp;
}