I have several forms that are not transmitting their variables to the page outlined in the action attribute.
<form action="login.php" method="post">
<table>
<tr>
<td>username</td><td><input type ="text" name="user_name"></td>
</tr>
<tr>
<td>password</td><td><input type="password" name="password"></td>
</tr>
<tr>
<td colspan="2" align="right">
<input type="submit" value="Login">
</td>
</tr>
</table>
</form>
On the page "login.php" I have the following script
$query = "SELECT * FROM forum_users WHERE user_name = '$user_name'";
This query is not being evaluated. As a check I tried inserting a simple "echo" command to show me the variable and it came up as being an Undefined Variable.
I have several otehr forms working in a similar manner with no problems. Any Ideas?