my querystring looks like this:
I only need the Email query string parameter, but the button name and value are getting concatenated to the end.
I validate the form since the user has to enter some or all of the email address.
Why is this happening?
Here's some of the HTML that should help:
<form id="frmViewInfo" name="frmViewInfo" method="get" action="AdminEditByEmail.php">
<table width="80%" border="1">
<tr >
<td width="100%">Email:<font color="red">*</font></td>
<td width="100%"><input name="Email" type="text" id="Email" size="100" maxlength="100" /></td>
</tr>
</table>
<p align="center">
<input name="btnSubmitInfo2" type="submit" id="btnSubmitInfo2" value="Click To View User Information" />
</p>
I only need the Email query string parameter, but the button name and value are getting concatenated to the end.
I validate the form since the user has to enter some or all of the email address.
Why is this happening?
Here's some of the HTML that should help:
<form id="frmViewInfo" name="frmViewInfo" method="get" action="AdminEditByEmail.php">
<table width="80%" border="1">
<tr >
<td width="100%">Email:<font color="red">*</font></td>
<td width="100%"><input name="Email" type="text" id="Email" size="100" maxlength="100" /></td>
</tr>
</table>
<p align="center">
<input name="btnSubmitInfo2" type="submit" id="btnSubmitInfo2" value="Click To View User Information" />
</p>