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