Go Back   Work From Home Forum -- Work At Home -- Working From Home > Insider Secrets Club Private > Programming Talk

Reply
 
LinkBack Thread Tools Display Modes
  #1  
Old 02-06-2011, 12:41 PM
Just starting out
 
Join Date: Feb 2011
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
complete is an unknown quantity at this point
Default Globals in PHP

Is there really such a thing as globals in PHP? I have looked into the online documentaion and I tried to declare a global variable.

I have a web site which uses PHP to create a WordPress blog. On the index.php file I declared a global variable:
PHP Code:
$_ENV['mytestzeststring'] = 'This Website Is Undergoing Tests'
So this should load immediately, right? It is the first declaration and assignment of the variable and so all of the following php files shoud understand this declaration, right?

Well, wrong. It did not work. Maybe it did not work because it is not what I am used to. in wp-login.php I had this declaration:
PHP Code:
print $_ENV['mytestzeststring']; 
and nothing was printed. But, on the other hand, if I declared and assigned the global at the top of wp-login.php as i did in index.php, then it works.

Is there really such a thing as globals in PHP? I think maybe I am assuming that it should work the same way that globals work in compiled code and PHP is not the same kind of animal. It is interpreted on the server rather than actually running on the server. Maybe I need to code something much mor robust. I am hoping to avoid this but I am thinking that eventually I will have to grab the IP address from the user and use that to indicate a more one-to-one interface. Then I would use that IP address and store it in My SQL as a true global variable that can be read throughout the web site. Please tell me that this is not necessary.
Reply With Quote
Reply
Work From Home Forum -- Work At Home -- Working From Home > Insider Secrets Club Private > Programming Talk

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -6. The time now is 02:05 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.0 RC2
Talk Home Business

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28