<?php
session_start ();
?>
<form method="GET" action="./form1.php">
<input type="password" name="password1"></input>
<input type="submit"></input>
</form>
<?php
echo session_id () . "<br>\n";
setcookie ("Cookie39", "DIES_IST_COOKIE39", time () + 3600);
echo htmlentities ($_GET ["password1"]) . "<br>\n";
echo htmlentities ($_COOKIE ["Cookie39"]) . "<br>\n";
echo htmlentities ($_COOKIE ["Cookie39a"]) . "<br>\n";
?>