I would like to write a generic PHP script that can handle data coming from any form. How do I know which POST method variables are available? PHP offers many predefined variables, like the superglobal $_POST. You may loop through $_POST as it’s an associate array of all POSTed values. For example, let’s simply loop [...]