php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #16860 h2 variable is global???
Submitted: 2002-04-26 14:20 UTC Modified: 2002-07-07 12:59 UTC
Votes:2
Avg. Score:1.5 ± 0.5
Reproduced:0 of 1 (0.0%)
From: hudsonm at steemer dot com Assigned:
Status: No Feedback Package: Variables related
PHP Version: 4.1.2 OS: i386-redhat-linux-gnu
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 — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
42 + 4 = ?
Subscribe to this entry?

 
 [2002-04-26 14:20 UTC] hudsonm at steemer dot com
Passing variables from an html form to a php script, I had a problem with a variable named 'h2'.
It would not have the value from the form but would be a 'o' (lowercase o). After looking at my code multiple times I printed out the h2 variable using a script like this.

<?
PRINT "h1 = $h1<br>";
PRINT "h2 = $h2<br>";
PRINT "h3 = $h3<br><br>";
$h1 = 111;
$h2 = 222;
$h3 = 333;
PRINT "h1 = $h1<br>";
PRINT "h2 = $h2<br>";
PRINT "h3 = $h3<br>";
?>

output from above script
**************************************
h1 = 
h2 = o
h3 = 

h1 = 111
h2 = 222
h3 = 333

Note that h2 has a value that is not assigned. This is constant, it is always a 'o'.
Have noticed this on prior versions of PHP (4.0.6,???) that my hosting service has had installed.

Thanks
Hudson McVay

********************************************************
Build Date Feb 28 2002 
Configure Command  './configure' '--with-apxs=/usr/local/apache/bin/apxs' '--with-xml' '--enable-bcmath' '--enable-calendar' '--with-curl' '--with-swf=/usr/local/flash' '--enable-ftp' '--with-gd=../gd-1.8.4' '--with-jpeg-dir=/usr/local' '--with-xpm-dir=/usr/X11R6' '--with-png-dir=/usr' '--with-imap=../imap-2001.BETA.SNAP-0105220031' '--with-ming=../ming-0.1.1' '--enable-magic-quotes' '--with-mysql' '--with-xslt-sablot' '--enable-safe-mode' '--enable-track-vars' '--with-ttf' '--enable-versioning' '--with-zlib' 
Server API Apache 

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-04-26 16:32 UTC] tal@php.net
Could you please post the exact php script you used + the form file?

-Tal
 [2002-04-26 16:38 UTC] rasmus@php.net
My guess is that you have a cookie named h2 - stick a phpinfo() on that page and take a close look at the request headers near the bottom.
 [2002-07-07 12:59 UTC] derick@php.net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 18:01:28 2024 UTC