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