php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #20561 Can't track vars!
Submitted: 2002-11-22 00:10 UTC Modified: 2002-11-22 00:26 UTC
From: stonelee74 at 163 dot com Assigned:
Status: Closed Package: Apache related
PHP Version: 4.2.3 OS: FreeBSD 4.7
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: stonelee74 at 163 dot com
New email:
PHP Version: OS:

 

 [2002-11-22 00:10 UTC] stonelee74 at 163 dot com
I had just install a web server.
all configuration is default.
but the track_vars is off. I can't transfer any form value to another web page.

for example:

this is t.php
<html>
<head>
<title>t</title>
</head><bod>
<form name="test" action=test.php method=post>
name: <input type=text name="guest"><br>
<input type=submit>
</form>
</body>
</html>

this is test.php
<?php
echo $guest;
echo "1111";
?>

when I input something in the textbox and then click "submit", it only display 1111, nothing else;

why?

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-11-22 00:12 UTC] sniper@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.
 [2002-11-22 00:26 UTC] stonelee74 at 163 dot com
thanks for your help!
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Oct 08 21:01:27 2024 UTC