<?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 ("Cookie59", "COOKIE59", time () + 30);
echo htmlentities ($_COOKIE ["Cookie59"]) . "<br>\n";
echo htmlentities ($_COOKIE ["Cookie59a"]) . "<br>\n";
echo htmlentities ($_POST ["txt1"]) . "<br>\n";
session_destroy ();
?>