/media/sda-magnetic/david/Dok-15-2023-11-27/informatik/www-intel-compute-stick-2022-06-13/037/form1.php


<?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";
?>