May 14th, 2009, 6:39 PM
Hey bwaye,
When that happens, the most likely cause is that your form submit button has a different name attribute value than the value specified. Make sure your form submit button looks like this:
Also, you're not disabling the submit button when submitting the form are you? If so, you'll need to add a hidden field to the form and specify THAT name attribute in the line:
- Ben
When that happens, the most likely cause is that your form submit button has a different name attribute value than the value specified. Make sure your form submit button looks like this:
Code:
<input type="submit" name="submit" value="Place Bid" />
Also, you're not disabling the submit button when submitting the form are you? If so, you'll need to add a hidden field to the form and specify THAT name attribute in the line:
PHP Code:
"submit_button" => "submit",
- Ben