I have a php script which I have done many times before, and I have one page with a form, passing information to another section which then records it in the database and show different html.
The form action address is pointing to the second section:
index.php?LoadModule=add_products&Panel=Add_Page_2
(Add_Page_2 is the second section the form info is POSTed to.)
BUT, when I click on the submit it wants to ignore that action address and it just deleted the form info refreshing the same page I was on.
Like the script playfully switched the Add_Page_2 address with Add_Page_1.
Any ideas what could make a form ignore the action="whatever" address?