<?php
if(IsSet($_POST['text_entered']))
$textentered = $_POST['text_entered'];
if(IsSet($_POST['who_from']))
$whofrom = $_POST['who_from'];
if(IsSet($_GET['text_entered']))
$textentered = $_GET['text_entered'];
if(IsSet($_GET['who_from']))
$whofrom = $_GET['who_from'];
?>
<html>
<head>
<title>Show what was entered.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#FFFFFF" text="#000000">
<p>Hello,</p>
<p>You entered: &quot;<?php PRINT("$textentered"); ?>&quot;, using the
<?php PRINT("$whofrom"); ?> </p>
<p><a href="Ask_for_text.htm">Return to the ask_for_text page.</a></p>
</body>
</html>