<?php
session_start ();
?>
<form method="POST" action="./form1.php">
<input type="text" name="text1"></input>
<input type="submit"></input>
</form>
<?php
setcookie ("Cookie53", "THIS_IS_COOKIE_53", time () + 3600);
echo session_id () . "<br>\n";
echo htmlentities ($_COOKIE ["Cookie53"]) . "<br>\n";
echo htmlentities ($_COOKIE ["Cookie53a"]) . "<br>\n";
echo htmlentities ($_POST ["text1"]) . "<br>\n";
session_destroy ()
?>