<?php
session_start ();
?>
<FORM METHOD="GET" ACTION="./phptest.php">
<INPUT TYPE="password" NAME="password1"></INPUT>
<INPUT TYPE="submit"></INPUT>
</FORM>
<?php
echo session_id ();
setcookie ("Cookie27", "Inhalt", time () + 3600);
echo htmlentities ($_COOKIE ["Cookie27"]);
echo htmlentities ($_COOKIE ["Cookie28"]);
echo htmlentities ($_GET ["password1"]);
?>