Your web server isn't the problem, it has globals set to off (which is the default). That means, to access POST variables, you need to use $_POST
For example:
if(!isset($TestFeild))
should be
if(!isset($_POST['TestFeild']))
and your echo should look like
echo "You have entered " . $_POST['TestField'] . " into the field";
Cgraz