Here's a stumper.
I'm running PHP4 with Red Hat/Apache. A script I wrote works fine. Two other people (one running Solaris/Apache, the other win2k) try my script. It bombs. We troubleshoot and discover that in places where I call form variables simply by their name (ie, if field name is "txtField", then i call it with $txtField), the field value is not coming through for them. But it does for me. If we change $txtField to $HTTP_POST_VARS["txtField"] , it works for them, too. Is there a setting they can change in PHP that will relieve them of this burdensome requirement? Or am I missing something?
Many thanks in advance..
-dje