Formulario php (post)
Expongo el siguiente problema tengo que hacer un trabajo de clase en que consiste en 3 paginas en la primara se selecciona una imagen para el fondo, en la segunda se escribe un texto con un Jquery y en la tercera se ponen unos logos y al final se muestre las 3 paginas en una. Mi duda es la siguiente como puedo pasar eso datos del post de una a otra y que se queden guardado hasta el final y como validar unos input radio para que si no se ha seleccionado ninguno no se pueda pasar.
gracias.
Esto es lo que llevo:
<?php
$img1 = isset($_POST['img1']) ? $_POST['img1'] : NULL;
$img2 = isset($_POST['img2']) ? $_POST['img2'] : NULL;
$img3 = isset($_POST['img3']) ? $_POST['img3'] : NULL;
$img4 = isset($_POST['img4']) ? $_POST['img4'] : NULL;
$img5 = isset($_POST['img5']) ? $_POST['img5'] : NULL;
$img6 = isset($_POST['img6']) ? $_POST['img6'] : NULL;
$btnE = isset($_POST['btnE']) ? $_POST['btnE'] : NULL;
$imgGeneral = isset($_POST['imgGeneral']) ? $_POST['imgGeneral'] : NULL;
?>
<form action="editTexto.php" method="post">
<table>
<tr>
<td><input type = "radio"name = "img"id = "img1"value = "img1"/></td>
<td><IMG SRC="fondos/img1.jpg" id="fondo" name="img1" WIDTH="292" HEIGHT="173"></td>
<td><input type = "radio"name = "img"id = "img2"value = "img2"/></td>
<td><IMG SRC="fondos/img2.jpg" id="fondo" name="img2" WIDTH="292" HEIGHT="173"></td>
<td><input type = "radio"name = "img"id = "img3"value = "img3"/></td>
<td><IMG SRC="fondos/img3.jpg" id="fondo" name="img3" WIDTH="292" HEIGHT="173"></td>
</tr>
<tr>
<td><input type = "radio"name = "img"id = "img4"value = "img4"/></td>
<td><IMG SRC="fondos/img4.jpg" id="fondo" name="img4" WIDTH="292" HEIGHT="173"></td>
<td><input type = "radio"name = "img"id = "img5"value = "img5"/></td>
<td><IMG SRC="fondos/img5.jpg" id="fondo" name="img5" WIDTH="292" HEIGHT="173"></td>
<td><input type = "radio"name = "img"id = "img6"value = "img6"/></td>
<td><IMG SRC="fondos/img6.jpg" id="fondo" name="img6" WIDTH="292" HEIGHT="173"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name = "btnE" value="Siguiente"/></td>
</tr>
</table>
</form>