<?php
session_start ();
?>
<form method="POST" action="./form1.php">
<input type="password" name="password1"></input>
<input type="submit"></input>
</form>
<?php
echo session_id () . "<br>\n";
setcookie ("Cookie54", "THIS_IS_COOKIE54", time () + 2400);
echo htmlentities ($_COOKIE ["Cookie54"]) . "<br>\n";
echo htmlentities ($_COOKIE ["Cookie54a"]) . "<br>\n";
echo htmlentities ($_POST ["password1"]) . "<br>\n";
?>