I want to be able to have one php script that can process multiple forms. Is there a way to get the HTML form value and use that as a case switch for performing the desired operation?
An example of this put into play would be a script called submitData.php and depending on the value of the form tag, it could email the data, calculate the data into a formula, etc...
This way I don't have to have 10 different scripts for 10 different form types. It will keep the code alot more modular.