<?php
session_start ();
?>
<form method="POST" action="./form1.php">
<input type="text" name="txt1"></input>
<input type="submit"></input>
</form>
<?php
echo session_id () . "<br>\n";
setcookie ("Cookie60", "COOKIE60", time () + 1200);
echo htmlentities ($_COOKIE ["Cookie60"]) . "<br>\n";
echo htmlentities ($_COOKIE ["Cookie60a"]) . "<br>\n";
echo htmlentities ($_POST ["txt1"]) . "<br>\n";
session_destroy ();
?>