Hi there,
How do I pass extra variables from a form to the Browser Address box? That is, how do I get the values in the form fields into the "action" part of the form so that I can send it to the next page? I tried below but it isn't working - how do I get the username and password values from the form fields into the "action" part of the form?
Thanks!
<FORM action="Checkuser.php?username=$username&password=$password" method="POST" name="Form1">
<TABLE>
<TR>
<TD valign="top">
<font face="verdana,arial" size=2><strong>
<br>
Login
<br><br>
</strong>
</TD>
</TR>
<TR>
<td width=90 ><font face="verdana,arial" size=1>Username: <font color=orange>*</font></td>
<td><input type="text" name="Username" ></td>
</tr>
<tr>
<td><font face="verdana,arial" size=1>Password: <font color=orange>*</font></font></td>
<td><input type="text" name="Password" ></td>
</tr>
<tr valign="top">
<td> </td>
<td><input type="submit" value="Login" name="send" ></td>
</tr>
</table>
</FORM>