greetUser.php

Source of greetUser.php

<!DOCTYPE html>
<html lang = "en-US"> 

	<head>
		<meta http-equiv="content-type" content="text/xml; charset=utf-8" />
    <title>greetUser.php</title>
</head>
<body>
  <h1>Greet user Response</h1>
  <?php
  $userName = $_REQUEST["userName"];
  print "<p>Hi, $userName!</p> ";
  ?>
</body>
</html>