Date: 10/31/02
- Next message: David Smith: "Re: [PHP-DB] global vars"
- Previous message: John W. Holmes: "RE: [PHP-DB] HTML Select Boxes not displaying"
- Next in thread: David Smith: "Re: [PHP-DB] global vars"
- Reply: David Smith: "Re: [PHP-DB] global vars"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hello,
I have big problem. I upgraded PHP from 4.1.2 to 4.2.3 and my scripts with
doesn´t work. Please help me!
in php.info register globals=On
For example I have one script:
first.php
<?
global $a;
$a=150;
Header("Location: second.php");
?>
second.php
<?
echo $a;
echo $GLOBALS['a'];
echo "END";
?>
Where I have a bug?
Thank you very much
Tomas Kubis
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: David Smith: "Re: [PHP-DB] global vars"
- Previous message: John W. Holmes: "RE: [PHP-DB] HTML Select Boxes not displaying"
- Next in thread: David Smith: "Re: [PHP-DB] global vars"
- Reply: David Smith: "Re: [PHP-DB] global vars"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

