Jump to content

Form Field Select Option Post and Redirect


dbit

Recommended Posts

We are trying to get this form select to Post to an eMail as well redirect to different pages depending on a Yes or No answer.

 

<select name="Have_the_Investment" class="business-solution" >

<option value="Select">Select One</option>             

<option value="Yes">Yes</option>

<option value="No">No</option>

</select>

 

We have the following which directs to the pages but removes the post to the email.

 

<?php

 

if($_REQUEST['redirect']){

print "<meta http-equiv='refresh' content='0; url={$_REQUEST[redirect]}'>"; }

 

?>

 

<select name="redirect" class="business-solution" >

<option value="Select">Select One</option>             

<option value="download.html">Yes</option>

<option value="success.html">No</option>

</select>

 

:-\

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.