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