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