Hello, I was wondering if anyone knows if it is possible to set-up an Online Form, and Redirect the person Submitting the Form to a Specific Website/page based on what is entered into one specific field - and that I would also be able to use with my current Auto-Responder Service... For Example: one Field called "Code#" - someone enters, A123 and Clicks Submit and is Redirected to www.website.com/pageA123.html (for example) Thank You!
You are going to want to use PHP for that. You can use a string truncation and then you can use location.
Quick way with no truncation of white spaces, but it is a start. <?php $code = $_POST['code']; header('location: http://www.yoursite.com/'.$code.'.html'); ?> Code (markup):