hello, I have two form submit email from emailmeform.
I want to put these at one submit email form, but my visitors still can choose which they want to submit, ie as models or as voters.
But I dont know how to linked these email submit form with their choose feature.
Would you help me?
Below is my code.
HTML Code:
<form method="post"
action="http(.)//www(.)xxxxxx(.)com/fid.php?formid=533870" enctype="multipart/form-data" accept-charset="UTF-8"> (this first link to send email)
"http(.)//www(.)www(.)xxxxx(.)com/fid.php?formid=532682" enctype="multipart/form-data" accept-charset="UTF-8"> (this second linkt to send email)
<table bgcolor="#b5d5ea" border="0"
cellpadding="2" cellspacing="0">
<tbody>
<tr valign="top">
<td nowrap="nowrap"><font
color="#000000" face="Verdana" size="2"><b>As
: </b></font></td>
</tr>
<tr>
<td>
<select name="src">
<option
value="this one for first link to first feature">Model</option>
<option
value="this onde for second link for second feature"
selected="selected">Voters</option>
</select>
</td>
</tr>
<tr valign="top">
<td nowrap="nowrap"><font
color="#000000" face="Verdana" size="2"><b>Name
: </b></font></td>
</tr>
<tr>
<td><input
name="FieldData0" size="15" type="text">
</td>
</tr>
<tr valign="top">
<td nowrap="nowrap"><font
color="#000000" face="Verdana" size="2"><b>Email
: </b></font></td>
</tr>
<tr>
<td><input
name="FieldData1" size="20" type="text">
</td>
</tr>
<tr>
<td align="right"><input
name="hida2" value="" maxlength="100" size="3"
style="display: none;" type="text"><input
class="btn" value="Subscribe" name="Submit"
type="submit"></td>
</tr>
<tr>
<td colspan="2" align="center"><br>
</td>
</tr>
</tbody>
</table>
<br>
</form>
Thank you very much for your advance.
Edwin
Last edited by chrishirst; 01-06-2010 at 09:32 AM..
|