Re: Register globals and ini_set

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



I'm having a serious pain with globals.. maybe someone can help.

My major client moved her service from one server to another, and with it, PHP went from 4.1 to 4.2+. 
Register Globals was turned off, and when everything failed to work, tech support turned them back on via .htaccess. I'm planning to update the hundreds of scripts over the next weekend or so, but for right now, 
my $_SESSION['variable'] seem to be failing sporatically. It doesn't seem to make a difference whether I have session_start() at the top of the file or not. 

Shouldn't something like this work?
<?php
    session_start();
    $my_local=$_SESSION['global_var'];
    echo($my_local);
?>

where $global_var is set in one file and then used in another?

Thanks for any help

Terry

-----Original Message-----
From: Sebastian <sebastian@xxxxxxxxxxxxxxxxxxx>
Sent: Jul 8, 2005 6:42 AM
To: virtualsoftware@xxxxxxxxx
Cc: php-general@xxxxxxxxxxxxx
Subject: Re:  Register globals and ini_set

if you have php <= 4.2.3 yes, otherwise no.
it has to be set in php.ini, .htaccess, or httpd.conf

virtualsoftware@xxxxxxxxx wrote:

>Hi,
>
>If i use, at the beginning of my scripts, ini_set('register_globals', 0), register globals will be turned off?
>
>Thanks
>  
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux