I am having issues takeing the name they select and passing the whole name to the next form. It only passes the first name to the next page.. is there a way to pass both first and last name?
Code:
<form name=QAForm method=post action=QAForm-Email.php>
<table border=0 align=center width="100%">
<tr><td width="71%"> QA Agent:</td><td width="29%" align="right"><select name=QAAgent>
<option value=John Ballon>John Ballon</option>
<option value=Carmen Bent>Carmen Bent</option>
<option value=Dustin Sue>Dustin Sue</option>
</select> </td></tr>
<tr><td colspan=2 align=center><br><input name=submitQA type=submit value="Submit QA Form"></td></tr>
</table>
</form>
Bookmarks