This is a newbie question…
I receive data from the user via a form, if one of the fields I get is marked ‘yes’ I want to send him a new form.
How is this done?
edit: I know how to check the value of my original form’s variable via $_POST. I know the conditionals, I’m asking for the syntax for creating the new form or redirecting the user to another html page with the new form.
Simply break out of the PHP block to output regular HTML:
Some people prefer the
if() : /* ... */ endif;construct here, but that’s merely a syntax difference.