LPMJ Example 11-1 (Click on the icon to view the source for copy and pasting)
<?php // formtest.php
echo <<<_END
<html>
	<head>
		<title>Form Test</title>
	</head>
	<body>
	<form method="post" action="formtest.php" />
		What is your name?
		<input type="text" name="name" />
		<input type="submit" />
	</form>
	</body>
</html>
_END;
?>