[PHP-DEV] PHP 4.0 Bug #4410: Form fields not being created as variables on submit From: ben <email protected>
Date: 05/11/00

From: ben <email protected>
Operating system: Windows 2000
PHP version: 4.0 Release Candidate 2
PHP Bug Type: Scripting Engine problem
Bug description: Form fields not being created as variables on submit

<html><head>
<META HTTP-EQUIV="Expires" CONTENT="Sun, 11 Jan 1970 11:11:11 GMT">
<title></title>
</head><body>
<form method="POST" action="login_results.php" name="theForm">
 Login<input type="text" size="31" name="Login" tabindex="1" maxlength="50"><br>
Password<input type="password" size="31" name="Password" tabindex="6" maxlength="20">
  </table>
</form>
</body>
</html>

<?php
if ( isset($Login) && isset($Password) )
{
...
}
else
{
/* fail */
}
?>

Form fields not being created as variables when you submit a page. This works fine in PHP 3.0.16 and PHP 4 RC1 but not in RC2.

Ben

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>