Tagged Questions

4
votes
4answers
301 views

secure php host name information - $_SERVER['HTTP_HOST'] alternative

I have a public facing debug script that I would only like to run on certain dev boxes, I was hoping to do this programatically inside this script, by detecting the server ip or name- So I have a ...
2
votes
4answers
67 views

PHP Globals access issue when using a variable variable

I have this line in a class function: $this_value = eval("return $$existing_value;"); This gives me the value I need when the $$existing_value variable is set in the function, but I've found that I ...
2
votes
2answers
107 views

Why aren't variables defined inside an include defined in the $GLOBALS array?

I'm trying to access a dynamically named variable that is defined inside an include file after the include is included, for example: require "/path/to/my/include.php"; echo ...
2
votes
5answers
182 views

Security Risk? $_REQUEST variables … $$ on the local stack

I was talking with one of my programmers earlier and he showed me a piece of code he was considering: foreach($_REQUEST as $var=>$val) { $$var = addslashes($val); } He wanted to be able to ...
2
votes
2answers
93 views

php global variables

I have a global variable $config, now i have a class and i want to use a value from config as a default argument for a class method like function f(var=$config['val']){} will this assignment work?
1
vote
3answers
56 views

$_REQUEST superarray not initialized in $GLOBALS array

PROBLEM So, I have this function to retrieve and proceed data from $_REQUEST, $_POST, $_GET or $_COOKIE arrays. I know which array to use only from function call. Simplified ex: function gg( $name, ...
1
vote
3answers
48 views

error with PHP GLOBALS

I'm trying to store an array in a PHP GLOBAL like so: // file_1.php include 'functions/session_metrics.php'; $project_data = array(); $session_data = array(); if (isset($_GET["product"])) { ...
1
vote
4answers
50 views

Is it possible to make php globals available inside a function scope automatically?

Let me start by explaining. I have a few global database connections and have a few simple functions that use each one and perform queries and such. Because i want to use the connections more then ...
1
vote
1answer
67 views

PHP $GLOBALS variable issue in included file

I recently moved a large CubeCart installation to a new server and it created a whole bunch of issues. Most of them I'm getting sorted out error by error, but I'm stuck on this one: In the main ...
1
vote
2answers
313 views

PHP - performance and memory issue with global variables

Hypothetical situation: I'm running a complex site in php, and i use a lot of global variables. i could store the variables in an existing global scope, say $_REQUEST['userInfo'], $_REQUEST['foo'], ...
1
vote
3answers
383 views

PHP 6 Globals variables deprecated?

I've read stuff about global variables like $_SESSION, $_GET and $_POST being removed, or at least becoming deprecated in PHP 6. Is this true? If so, what would be the alternative to retrieve data ...
1
vote
1answer
69 views

in_array problem with $GLOBALS

I have a $GLOBALS['plugins'] array. With these values: Array ( [0] => Array ( [0] => calendarFuncs/ [1] => calendar.php [2] => Calendar ) [1] ...
1
vote
6answers
290 views

Globals are bad! But should I use them in this context?

Would setting the $link to my database be one thing that I should use a GLOBAL scope for? In my setting of (lots of functions)...it seems as though having only one variable that is in the global ...
0
votes
3answers
32 views

Inserting output into page after document has been executed

In PHP have a situation where I need the page to be mostly executed, but have an item inserted into the output from that page. I think output buffering may be of some help, but I can't work out how ...
0
votes
1answer
47 views

PHP form mail and register globals

I have a form and php processing file, and everything seems to be working fine except that the user-entered variables are not showing up in the emailed form results. From the research I've done (I'm ...
0
votes
5answers
66 views

Own SuperGlobal Variable in PHP?

I was reading something about SuplerGlobals like $_SERVER or (see more detail PHP Manual Superglobals) the other day, now, I'm asking me: Is it possible to implement own SuperGlobals? Beside of ...
0
votes
3answers
55 views

php version greater than 5.0 and register globals?

we are changing servers and just installed php 5.3. the new server gave this error: Undefined variable: HTTP_SERVER_VARS we noticed register globals is turned off. on php.net website, there is a ...
0
votes
1answer
90 views

PHP global variable problem accross multiple files

so I have site structure like this. I have index.php, that includes() include.php, which includes functions.php and a bunch of other files. What I want to do is write $GLOBALS["something"] = ...
0
votes
4answers
99 views

Global Variables in static PHP classes

Is there a way to use a global variable everywhere in the Code? I want to use a Path variable to the located configured Folder in each Path ill declare in my code. Here's my Code: Index.php ...
0
votes
2answers
285 views

Accessing a global array inside class constructor

My aim is to retrieve some data from a global array which is defined in another PHP file. My code is running inside database.php file and the array I want to use is inside config.php file. I ...
0
votes
2answers
77 views

Wordpress php page $GLOBALS problem

Hi I've an issue while dealing with a php code inside Wordpress; I've my aaa.php file wich contains code: <?php require_once("lang_file.php"); echo $GLOBALS['general']['username']; ?> My ...
0
votes
1answer
215 views

PHP $GLOBALS Suggestion

I noticed Interspire Shopping Cart initializes a lot of it's classes to a PHP's $GLOBALS variable. Is there any performance or security issues when doing this? Below is a fake file but written ...
0
votes
4answers
333 views

How to create Globals Array

How do you create an array in GLOBALS for php? for example, I want to do something like this: $GLOBALS["chapter_names"] = array(); and then $GLOBALS["chapter_names"][$i] = $row -> ...
0
votes
2answers
1k views

Codeigniter variables from constructor are undefined

I'm using CI's Auth Tank library to query records for certain users. The variable $user_id = tank_auth->get_user_id(); grabs the user id from the session. I want to pull records where user_id = ...
0
votes
5answers
112 views

How to define large amounts of variables correctly in PHP?

I've got about 30 variables hard-coded into a php script and I need to remove them all and put them into their own places. I'm wondering, should define them as constants, globals, put them into a ...
0
votes
1answer
2k views

Trying to save file from Flash to PHP using $GLOBALS[“HTTP_RAW_POST_DATA”]

Let me start by saying PHP isn't my forte, I'm usually reluctant to try working with it because of problems exactly like this. The code works fine on my local machine under MAMP and on my server, but ...
0
votes
4answers
364 views

PHP: Dealing With MySQL Connection Variable

What is the best way to deal with the $db_conn variable once I create a mysqli object? I've been using $GLOBALS['_sql'] = new mysqli(...); But this seems dirty. The alternative that I've seen is ...
0
votes
5answers
138 views

globals php help

I am trying to use a global in a file that is just used to post data to. The global is not being registered on that page. How can I get the globals accessible in that page. EDIT maybe I wasnt too ...
-1
votes
4answers
53 views

PHP Global Variables Issue

I've got a scope problem here. and no idea why its not working, ive got a setup as follows: functions.php global $id; $id = $_GET['id']; index.php require_once('functions.php'); echo $id; now ...