I've posted a form to a php page which works, but for some reason on my PWS Win 98 machine it won't receive the posts. Normally on php you don't have to call the form do you, just put in the name of the form object name:

e.g. on my form:

<INPUT TYPE='TEXT' NAME='atextbox'>



on my posting to page.

<?php
echo "The information you posted was $atextbox<BR>\n";
?>


It keeps telling me that $atextbox is not defined!