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