Salve. E' possibile salvare il risultato di un form ad un file php in modo da poterlo richiamare con un link? Mi spiego con un esempio:
File form.html:
<html>
<head>
<title>Form</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="risultato.php">
Nome
<input type="text" name="nome" id="nome" />
<input type="submit" name="invia" id="invia" value="Invia" />
</form>
</body>
</html>
File risultato.php:
<html>
<head>
<title>Risultato</title>
</head>
<body>
<?
print("$nome");
?>
</body>
</html>
Quello che mi occorre è di far rimanere permanete il risultato del form in modo da poterlo richiamare tramite un link, senza far uso di un db.
Non sò se quello che chiedo sia possibile, comunque grazie lo stesso per l'eventuale aiuto.
File form.html:
<html>
<head>
<title>Form</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="risultato.php">
Nome
<input type="text" name="nome" id="nome" />
<input type="submit" name="invia" id="invia" value="Invia" />
</form>
</body>
</html>
File risultato.php:
<html>
<head>
<title>Risultato</title>
</head>
<body>
<?
print("$nome");
?>
</body>
</html>
Quello che mi occorre è di far rimanere permanete il risultato del form in modo da poterlo richiamare tramite un link, senza far uso di un db.
Non sò se quello che chiedo sia possibile, comunque grazie lo stesso per l'eventuale aiuto.