I have the following code:
if ($_POST[\'submit\'] == \"Next\") { foreach($_POST[\'info\'] as $key => $value) { echo $value; } }
foreach($_POST['info'] as $key=>$value) { if ($key == 0) { //or what ever the first key you're using is continue; } else { echo $value; } }