Hello,
I have a simple web form that is populating a login variable with a value of "SEND". However, in my current version of PHP, 5.2.5, it is not populating, but in the older version which the application was built upon, it is. Does anyone know what could be causing something like that. Below is the code for the HTML web form:
echo "<FORM NAME=TestFrm METHOD=post ACTION=\"$PHP_SELF?".SID. "\">";
echo "<Table>
<tr>
<td align=left>User Name:</td>
<td align=left><INPUT TYPE=text NAME=userId></td>
</tr>
<tr>
<td align=left>Password:</td>
<td align=left><INPUT TYPE=PASSWORD NAME=password></td>
</tr>
<tr>
<td align=center><INPUT TYPE=SUBMIT NAME=login VALUE='SEND'></td>
<td align=center><INPUT TYPE=RESET VALUE='CANCEL'></td>
</tr>
</Table></FORM>";
I have a simple web form that is populating a login variable with a value of "SEND". However, in my current version of PHP, 5.2.5, it is not populating, but in the older version which the application was built upon, it is. Does anyone know what could be causing something like that. Below is the code for the HTML web form:
echo "<FORM NAME=TestFrm METHOD=post ACTION=\"$PHP_SELF?".SID. "\">";
echo "<Table>
<tr>
<td align=left>User Name:</td>
<td align=left><INPUT TYPE=text NAME=userId></td>
</tr>
<tr>
<td align=left>Password:</td>
<td align=left><INPUT TYPE=PASSWORD NAME=password></td>
</tr>
<tr>
<td align=center><INPUT TYPE=SUBMIT NAME=login VALUE='SEND'></td>
<td align=center><INPUT TYPE=RESET VALUE='CANCEL'></td>
</tr>
</Table></FORM>";