#!/bin/bash
IFS='&'
for i in $QUERY_STRING
do
	eval $i
done
echo "Content-type: text/html"
echo
echo "<html>
<head>
<title>CGI test</title>
</head>
<body>
<h1>$lname</h1>
<h2>$fname</h2>
<h3>$city</h3>
</body>
</html>"
exit
