I have a simple script that submits a form to $php_self and then a function takes care of inserting the variables into a db.
I made use of the fact that PHP automatically creates variables with the names of the form fields.
My problem is that although the script works perfectly when using the GET method, the form is quite large so I want to use POST instead.
I was told they are interchangeable and I just had to change the method from GET to POST in my script, but when I do so I get Cannot Display Page on my browser when I click on submit.
I didn't change anything else in my script so if they are really interchangeable why does it stop working?