Let's say I have an HTML form and there is a group of radio buttons.
A need different script to be run depending on which button is checked.
Let's say I have this:
<input type="radio" name="invtype" value="product">
<b>PRODUCT<b>
<p>
<input type="radio" name="invtype" value="software">
<b>SOFTWARE<b>
<p>
<input type="radio" name="invtype" value="service">
<b>SERVICE<b>
<p>
<input type="radio" name="invtype" value="slogan">
<b>SLOGAN<b>
How do I do that?
I'm thinking of doing multiple hidden submit buttons, but I don't know how to run PHP scripts off them.
I used to do it through {header}, but when I do that, a parameter that I need to be passed to the next file, somehow doesn't get passed. Or I misunderstand something...