Hi!
I have the same problem as
http://www.phpbuilder.com/forum/read.php3?num=2&id=195893&loc=0&thread=195893
POST data gets lost, but code is taken from examples and looks clear.
Krual
If you are using PHP 4.1.1 or lower, try this:
$HTTP_POST_VARS["variable_name"]
if on 4.1.2 or above
$_POST["variable_name"];
Hope this helps
fLIPIS
It doesn't help in my case. I think it has nothing to do with variable globalization.
Now it looks like:
echo "<br>Value of a:",$POST['a'],"<br>Value of b:",$POST['b'],"<br>";
You can try to set register_globals to on on your php.ini file. This way you can access the variable by its name.
Sory ca't help more
Unfortunately, problem isn't here.