Tagged Questions
7
votes
10answers
9k views
Where are constant variables stored in C?
I wonder where constant variables are stored. In the same memory area as global variables? Or on the stack?
2
votes
5answers
183 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 ...
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 ...
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
5answers
113 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
4answers
368 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 ...
-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 ...