Ok I have the following form
<form action="http://brocknoland.com/?debug=true&_cmd=order" method="POST">
<font size="2">
Max shares <input type="text" size="4" value="5">,
max price $<input type="text" size="4" value="5">.
<input type="submit" value="Buy" onclick="return confirmSubmit(this)">
</font></form>
Then I on the page I have in the action field I have it do this.
print("GET ARRAY\n");
print_r($_GET);
print("POST_1 ARRAY\n");
print_r($HTTP_POST_VARS);
print("POST_2 ARRAY\n");
print_r($_POST);
print("SERVER ARRAY\n");
print_r($_SERVER);
Yet there are no POST variables?? Am I going crazy?
View it for youself at [link]http://brocknoland.com[/link]. Click Login and then submit the SELL form.