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