<?php
session_start ();
?>
<form method="GET" action="./form1.php">
<input type="text" name="text1"></input>
<input type="submit"></input>
</form>
<?php
echo session_id () . "<br>\n";
setcookie ("Cookie41", "THIS_IS_COOKIE_41", time () + 3600);
echo htmlentities ($_GET ["text1"]) . "<br>\n";
echo htmlentities ($_COOKIE ["Cookie41"]) . "<br>\n";
echo htmlentities ($_COOKIE ["Cookie41a"]) . "<br>\n";
?>