<?php
session_start ();
?>
<form method="POST" action="./form0003.php">
<input type="password" name="p3"></input>
<input type="submit">
</form>
<?php
echo session_id () . "<br>\n";
setcookie ("c3", "c3", time () + 3600);
echo htmlentities ($_COOKIE ["c3"]) . "<br>\n";
echo htmlentities ($_COOKIE ["c3a"]) . "<br>\n";
echo htmlentities ($_POST ["p3"]) . "<br>\n";
session_destroy ();
?>