İstediğin böyle bir şey galiba.Eğer anlamazsan bir php dosya oluşturup kaydet ve dene daha iyi anlarsın.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9" />
<title>Untitled Document</title>
</head>
<body>
<?php
switch(@$_POST["HaRRiBo"]) {
case 'kayit':
foreach($_POST["isim"] as $koltukno => $val) {
echo "<fieldset><legend>Koltuk $koltukno</legend>
İsim : ".$_POST["isim"][$koltukno]."<br />
Soyisim : ".$_POST["soyisim"][$koltukno]."<br />
Cinsiyet : ".$_POST["cinsiyet"][$koltukno]."<br />
Pasaport No : ".$_POST["pasno"][$koltukno]."<br />
</fieldset>";
}
break;
case 'sec':
if(count($_POST["koltuk"])=="0") {
echo "En az bir koltuk seçin.<br><a href='?'>Geri dön...</a>";
} else {
?>
<form id="form2" name="form2" method="post" action="">
<?php
for($i=0; $i<count($_POST["koltuk"]); $i++) {
$koltukNO = $_POST["koltuk"][$i];
?>
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
<td><strong>Koltuk <?=$koltukNO?> </strong></td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
<td>İsim</td>
<td><input type="text" name="isim[<?=$koltukNO?>]" /></td>
</tr>
<tr>
<td>Soyisim</td>
<td><input type="text" name="soyisim[<?=$koltukNO?>]" /></td>
</tr>
<tr>
<td>cinsiyet</td>
<td><input type="text" name="cinsiyet[<?=$koltukNO?>]" /></td>
</tr>
<tr>
<td>pasaport no </td>
<td><input type="text" name="pasno[<?=$koltukNO?>]" /></td>
</tr>
</table></td>
</tr>
</table><hr />
<?php
}
?>
<input type="hidden" name="HaRRiBo" value="kayit" />
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
<td colspan="2" align="center"><input type="submit" name="Submit" value="Kaydet" /></td>
</tr>
</table>
</form>
<?php
}
break;
default:
?>
<form id="form1" name="form1" method="post" action="">
<input type="hidden" name="HaRRiBo" value="sec" />
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
<td width="48%" align="center">Koltuk 1 </td>
<td width="52%" align="center"><input type="checkbox" name="koltuk[]" value="1" /></td>
</tr>
<tr>
<td width="48%" align="center">Koltuk 2 </td>
<td width="52%" align="center"><input type="checkbox" name="koltuk[]" value="2" /></td>
</tr>
<tr>
<td width="48%" align="center">Koltuk 3 </td>
<td width="52%" align="center"><input type="checkbox" name="koltuk[]" value="3" /></td>
</tr>
<tr>
<td width="48%" align="center">Koltuk 4 </td>
<td width="52%" align="center"><input type="checkbox" name="koltuk[]" value="4" /></td>
</tr>
<tr>
<td width="48%" align="center">Koltuk 5 </td>
<td width="52%" align="center"><input type="checkbox" name="koltuk[]" value="5" /></td>
</tr>
<tr>
<td width="48%" align="center">Koltuk 6 </td>
<td width="52%" align="center"><input type="checkbox" name="koltuk[]" value="6" /></td>
</tr>
<tr>
<td width="48%" align="center">Koltuk 7 </td>
<td width="52%" align="center"><input type="checkbox" name="koltuk[]" value="7" /></td>
</tr>
<tr>
<td width="48%" align="center">Koltuk 8 </td>
<td width="52%" align="center"><input type="checkbox" name="koltuk[]" value="8" /></td>
</tr>
<tr>
<td width="48%" align="center">Koltuk 9 </td>
<td width="52%" align="center"><input type="checkbox" name="koltuk[]" value="9" /></td>
</tr>
<tr>
<td width="48%" align="center">Koltuk 10 </td>
<td width="52%" align="center"><input type="checkbox" name="koltuk[]" value="10" /></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="Submit" value="Seç" /></td>
</tr>
</table>
</form>
<?php
break;
}
?>
</body>
</html>