php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #4410 Form fields not being created as variables on submit
Submitted: 2000-05-11 17:12 UTC Modified: 2000-07-26 22:11 UTC
From: ben at xexo dot com Assigned:
Status: Closed Package: Scripting Engine problem
PHP Version: 4.0 Release Candidate 2 OS: Windows 2000
Private report: No CVE-ID: None
 [2000-05-11 17:12 UTC] ben at xexo dot com
<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


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2000-06-13 23:16 UTC] andrei at cvs dot php dot net
Make sure you have register_globals turned on in php.ini
 [2000-07-26 22:11 UTC] zak@php.net
No user feedback - closing bug - please submit a new bug report if problem occurs again.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Sep 28 17:01:27 2024 UTC