Hey guys,
I'm trying to kill two birds with one stone here. I have a form that collects information from text input and I have another form that has the inputs preset. I need the form that collects text input to send the input via email and I need the preset inputs to be sent over to the new page that opens upon clicking the submit button. Currently, I have two seperate pages doing these tasks, but I want to combine them into one button. Any help would be greatly appreciated. Thanks!
- EP -
<!-- Text Input
<form method=POST action='/secure/post.php'>
<td><input class="formInput required" name='input' type='text' value="<?php echo $_POST["input"]; ?>"></td>
<td class='button'><input type=image name="submit" src="/images/now.gif"></td>
</form>
-->
<!-- Preset Inputs
<SCRIPT LANGUAGE="javascript">
function callSubmit(){document.frmApplicationTermsCond.submit();}
</SCRIPT>
<FORM NAME="frmApplicationTermsCond" ACTION="https://www.geonlineapply.com/servlet/MCSGenericApp" METHOD="POST">
<INPUT TYPE=HIDDEN name="MCSCLIENTTEST" value="N">
</FORM>
<a href="javascript:callSubmit()" class="rollover">Click Here</a>
-->