per la visualizzazione è come ha scritto neoscript:
2 file:
file 1 (che può anche essere un semplice .html)
<form action="visualizza_dati.php" method="post">
Domanda 1:
<input type="text" name="risposta1" /><br />
Domanda 2:
<input type="text" name="risposta2" /><br />
Domanda 3:
<input type="text" name="risposta3" /><br />
.
.
.
.
<input type="submit" value="Finito" />
</form>
file 2 (.php)
<?
if(!empty($HTTP_POST_VARS['risposta1']))
{
echo "Domanda 1: ";
echo $HTTP_POST_VARS['risposta1'];
echo "<br />";
}
if(!empty($HTTP_POST_VARS['risposta2']))
{
echo "Domanda 2: ";
echo $HTTP_POST_VARS['risposta2'];
echo "<br />";
}
if(!empty($HTTP_POST_VARS['risposta3']))
{
echo "Domanda 3: ";
echo $HTTP_POST_VARS['risposta3'];
echo "<br />";
}
.
.
.
.
.
.
?>
più o meno è così!
per l'altra opzione non ho capito cosa intendi.
"Vuoi rendere impossibile per chiunque opprimere un suo simile? Allora, assicurati che nessuno possa possedere il Potere."
- M. Bakunin -