php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #20227 the .php can not get variable values from the input
Submitted: 2002-11-03 07:57 UTC Modified: 2002-11-03 08:11 UTC
From: ddd at ddd dot com Assigned:
Status: Not a bug Package: IIS related
PHP Version: 4.2.3 OS: W2k Server English
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
50 + 18 = ?
Subscribe to this entry?

 
 [2002-11-03 07:57 UTC] ddd at ddd dot com
I have installed the php 4.2.3 in W2K Server (en) Box, via ISAPI, the 
<? phpinfo();?> works fine...

but when I write the example as folling...

# fils: test.html
<html>
<head>
<title>??าปาณ</title>
</head>
<body>
<H1>Please Input your name:</H1>
<form method="POST" action="first.php">
  <p><b>Your Name is</b><input type="text" name="text1" size="20">
<input type="submit" value="Commit" name="button1"></p>
</form>
</body>
</html>

#file:first.php
<?  if (!($text))
    echo "<H1>Your name is".$text1."</H1>"; 
else
echo "please input your name!";
?>



When I key in some words in the text1 field... and commit...

but the first.php just return the following...

Your name is:

It seems the variable value has not been successfully transiitted to the first.php, or the php can not get the variable's value content correctly..


why this happy???

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-11-03 08:11 UTC] moriyoshi@php.net
In PHP 4.2.0, the 'register_globals' setting default changed to
'off'. See http://www.php.net/release_4_2_0.php for more info.
We are sorry about the inconvenience, but this change was a necessary
part of our efforts to make PHP scripting more secure and portable.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 23:01:29 2024 UTC