Hello Everybody!
I am running Apache (binary) on win2k with MySQL and PHP. It works great. Now, I would like to upload some of the stuff I have made to my ISP's free server space to test it.
The problem is, my ISP has Apache - Linux - PHP 4 and for some reason I can not pass simple values. Here is the test script that will not work:
<? if($Submit) {
echo " $this <BR> $that <BR> $other";
} else { ?>
<p>Just testing</p>
<form name="form1" method="post" action="<? echo $PHP_SELF ?>">
<input type="text" name="this">
<br>
<input type="text" name="that">
<br>
<input type="text" name="other">
<br>
<input type="submit" name="Submit" value="Submit">
</form>
<? } ?>
When you press "Submit" it just returns the form instead of the values (like it does on my local server).
Very simple. Should work. My ISP expects me to find the problem and tell them. I think maybe they played around with the php.ini file.
Please help - - Thank you