notice: undefined variable respuestas in (c://xampp/htdocs/web/encuesta/respuestas.php) on line 10
este es el script:
Código PHP:
<html>
<head>
<titulo>encuenta</>
</head>
<body>
<form method="post" action="proceso.php">
<table border="0">
<?php
for($i=1;$i<=$respuestas;$i++){
?>
<tr>
<td>Respuesta <?php echo $i; ?></td>
<td><input type="text" name="p<?php echo $i; ?>"</td>
</tr>
<?php } ?>
</table>
<input type="submit" name="submit" value="Enviar">
<input type="hidden" name="titulo" value="<?php echo $titulo; ?>">
<input type="hidden" name="respuestas" value="<?php echo $respuestas; ?>">
</body>
</html>