What is wrong with my config? Or is PHP4.3.3 somehow having a problem with running on windows XP and Apache 1.3.28? I really don't understand... it makes no sense to me.
Here is the problem, if I were to say make a form with the following script:
<?
$page = <<< HERE
// should print thevar from the input field
Variable output: $thevar
<BR>
<FORM action="test.php" method="get">
<INPUT name="thevar" type="text">
<INPUT type="submit">
</FORM>
HERE;
echo $page;
?>
note post is "get" so the url would be something like
http://localhost/test.php?variable=hello+world
and the page should show "hello world" right where $thevar is.
Problem is, nothing happens, the variable is lost, and doesn't show. I tried setting a cookie, then trying to retrieve it, no go, overall variables just are getting lost in the passing through the cgi or whatever.
Anybody know what to do? Is this an isolated problem or one that is known?
Thanks for help.
Net.techie