ya hice el primer formulario y el segundo, pero no logro pasar los datos entre los otros formularios sin que se me pierdan los datos
PRIMER FORMULARIO CON EL PRIMER APELLIDO
Código PHP:
<html>
<head>
<title>Primer apellido </tilte>
</head>
<body>
<h1>Primer apellido</h1>
<form name ="Papellido" action ="Sapellido.php" method ="POST">
<input type="text" name ="txtPapellido" >
<input type="submit" value ="siguiente" >
</form>
</body>
</html>
SEGUNDO FORMULARIO CON EL SEGUNDO APELLIDO
Código PHP:
<?
session_start();
$_session['ss_Papellido']= $_POST['txtPapellido'];
$var = $_session['ss_Papellido'];
echo "Primer apellido : $var";
?>
<html>
<body>
<h1>Segundo Apellido</h1>
<form name ="Sapellido" action = "Pnombre.php" method = "POST">
<input type="text" name="txtSapellido">
<input type="submit" value ="Siguiente">
</form>
</body>
</html>