Tagged Questions
The superglobals tag has no wiki summary.
13
votes
2answers
3k views
Possible Values For: PHP_OS
Is there a place to find a list of the possible values for the PHP predefined constant PHP_OS ? I'd like to use this value for a system requirements check, but need to know how different operating ...
5
votes
7answers
215 views
Should I Use PHP Superglobals or Filter Input to Retrieve $_GET data?
I really hate global variables - maybe its the C# programmer in me but when I'm working in PHP I grit my teeth every time I have to do something like this:
$strUsername = $_GET['username'];
Yes, ...
5
votes
4answers
114 views
Is there any way to dynamically access a superglobal?
As a web developer, I'm always using this approach to something like a login form or other “save” operation (ignoring the dangers of directly accessing input variables):
if (isset($_POST['action']) ...
4
votes
3answers
133 views
Safe to Overwrite super-global $_SESSION?
Is it safe to overwrite the super-global $_SESSION with a specialised session object?
class SessionObject implements ArrayAccess { ... }
...
// Session data has just been deserialised from store.
...
4
votes
2answers
120 views
php interpreter and superglobals
first of all, I'm a French student, so excuse me for my poor English
level.
We are currently developing a web server (C++) and I must develop the CGI execution
part, more exactly : The PHP CGI part.
...
3
votes
2answers
460 views
$_SERVER['HTTP_HOST'] contains port number too =/
I don't know maybe it's a bug.
I have 2 virutalhosts on my server.
virtualhost1.com
virtualhost2.com
if i open virtualhost1.com with port 80 (virtualhost1.com:80)
...
3
votes
4answers
299 views
Is using superglobals directly good or bad in PHP?
So, I don't come from a huge PHP background—and I was wondering if in well formed code, one should use the 'superglobals' directly, e.g. in the middle of some function say $_SESSION['x'] = 'y'; or if, ...
3
votes
10answers
592 views
PHP: transfer a large array between two sites
I'm trying to transfer a large array between two sites in PHP. I'm the admin in both.
The array is created on one site, and after its creation I wish to automatically redirect the user to the other ...
2
votes
3answers
142 views
Is $_SERVER['SERVER_ADDR'] always set?
Is $_SERVER['SERVER_ADDR'] always set?
Should I check with isset() or is that unnecessary?
I need to get the IP of the site so I can find out if it's 127.0.0.1/localhost
2
votes
3answers
55 views
Is the order of key-value pairs guaranteed in the superglobal $_GET?
Is the order of the keys-value pairs in the $_GET superglobal variable guaranteed to be consistent with how the field-value pairs were received in the requested URL?
For example, given this URL ...
2
votes
1answer
53 views
Store my own super global variable within PHP files?
I am building a website that will have hundreds of pages. Each of these pages will have a title, like:
The Best Webpage in the world - Stackoverflow
As above every page will have the sites name ...
2
votes
2answers
122 views
Should I store superglobals as the wrapper class' property or should I access it directly?
I wanted to create a wrapper for Session and Request so that I don't have to access the PHP superglobals directly. I realized that if I create a wrapper for the superglobals and use them, unit testing ...
2
votes
5answers
340 views
PHP's real SESSION object
EDIT: (UPDATED)
Maybe my question was not clear enough. Ok, lets put it this way:
$arr["a"] = 10;
var_dump($arr);
$arr["b"] =& $arr["a"];
var_dump($arr);
the first var_dump returns:
array
...
2
votes
3answers
258 views
Get full page URL with PHP
I am trying to get the entire page URL as a string in PHP - so, if the requested URL is ./foo.php?arg1=test&arg2=test2, I get "./foo.php?arg1=test&arg2=test2".
I know that I can get the ...
2
votes
4answers
502 views
Do you consider it bad form in PHP to access super globals within class methods?
Take an example login() function within a class Account.
class Account {
/* Class variables */
public function login() {
if(isset($_POST['username']) && isset($_POST['password']))
...
1
vote
3answers
57 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
5answers
202 views
Checking if a $_COOKIE value is empty or not
I assign a cookie to a variable:
$user_cookie = $_COOKIE["user"];
How can I check if the $user_cookie received some value or not?
Should I use if (empty($user_cookie)) or something else?
1
vote
1answer
363 views
Problem with codeigniter's redirect function
This may be a n00b topic but, anyways, I have been having a rather difficult and strange time with this bug. Basically I was working on a controller method for a page that displays a form. Basically, ...
1
vote
3answers
121 views
$_POST superglobal not passing (BASIC)
I just made a basic form page and through Aptana, WAMP, and through a basic 1and1 hosted page, I cannot get the form fields to pass through the $_POST superglobal.
Here is the index.html page:
...
1
vote
3answers
165 views
Error using $_SERVER in a variable variable (PHP)
I was trying to get the name of a superglobal variable through a Get parameter.. I was told to pass only _VAR_NAME (without the $) in the get request, so in the program I have to access it through a ...
1
vote
6answers
263 views
variable variables within $_POST and associative arrays
I'm probably being a little thick, but I can't seem to find an answer to this one. I'm moving from a server with register globals ON to one with it being off. It's a good thing, but unfortunately I ...
1
vote
4answers
480 views
How to grab URL parameters using PHP?
I'm trying to grab each URL parameter and display them from first to last, but I want to be able to display any of the parameters anywhere on the page. How can I do this? What do I have to add or ...
1
vote
5answers
777 views
PHP $_SERVER[‘SERVER_ADDR’] variable always returns 127.0.0.1
We have multiple load-balanced webserver machines running the same PHP webapp (LAMP) and I'd like to run slightly different code on each server (for testing purposes). I was hoping to use the ...
1
vote
7answers
297 views
1
vote
1answer
327 views
Is it possible for $_SERVER['SCRIPT_FILENAME'] to not be set?
Hey everyone, some background info:
In the config file for my website, I set the mysql database name, username and password based on the contents of $_SERVER['HTTP_HOST']. Because it is possible for ...
1
vote
2answers
806 views
PHP Accessing the user's country (locale)
Is there a superglobal reference to the user's country or is using the IP against a database of IP to Country lookups the best way to go?
0
votes
1answer
19 views
Supersimple SuperGlobal PHP form information needed
Just looking for some clarification, as I am still new to all of this:
I have created a rudimentary CMS. We now have to redesign it to allow for an image upload.
When I use my original form which I ...
0
votes
1answer
64 views
PHP superglobal variable doesn't conserve value from one page to another
I have a stupid question :)
I'm working on a simple php document which is primitively similar to an online test. The code for the moment consists of two question which where the marks are increased if ...
0
votes
3answers
91 views
PHP a custom SUPERGLOBAL array question
I was reading around, and I know it might be impossible to accomplish as I wished it would be but I am hoping there is a way, so here goes..
I have ID's of users and I have a count for each.
I would ...
0
votes
4answers
74 views
How to display an error when the uploaded files are exceeding post_max_size php?
How to display an error when the uploaded files are exceeding post_max_size php?
print_r($_FILES);
I get an empty array when I have exceeded the post_max_size
array()
I got this from php.net but ...
0
votes
2answers
40 views
Creating a php file in PHP
I'm working on an installer for a project of mine and the installer will create a configuration file.
I have it working 99.99% fine, but in that file i want a check to ensure a hacking can't access ...
0
votes
3answers
32 views
how to differentiate whether the environment is a virtual host or not?
I have this code here:
$config['SUBFOLDER'] = '/';
$config['APP_URL'] = 'http://'.$_SERVER['HTTP_HOST'].$config['SUBFOLDER'];
And APP_URL is used throughout the HTML templates. The problem is - the ...
0
votes
1answer
237 views
PHP: $_SESSION never getting set, but $_POST is?
[@the downvote and idiot remarks, that's not cool to beat up on people. I rechecked the documentation and coursenotes for 3 whole days before even asking the question - .
Closing this to prevent a ...
0
votes
1answer
56 views
Can I arbitrarily set $_FILE global
I have a function, not coded by me that uses the super global $_FILE['picture']['temp_name'] to create an image file and thumbnails. However, when a user does not upload an image, no image nor ...
0
votes
5answers
176 views
Is it safe to unset PHP super-globals if this behavior is documented?
I'm building a PHP framework, and in it I have a request object that parses the url as well as the $_GET, $_POST and $_FILE superglobals.
I want to encourage safe web habits, so I'm protecting the ...
0
votes
3answers
2k views
Superglobals in Objective-C and iOS
I'm trying to add some sort of a superglobal in my app. It will only store a small integer, but I need it to be accessible from anywhere in my app.
I know you can use the delegate for this, but ...
0
votes
1answer
270 views
What is the benefit of using the super global `$_SERVER['PHP_SELF']` in PHP?
What is the benefit of using the super global $_SERVER['PHP_SELF']?
0
votes
2answers
194 views
Possible to Dynamic Form Generation Using PHP global variables
Apparently there was confusion as to my original post so let me start over:
I am essentially creating an online shopping cart which gives a manager the ability to enroll his/her employees for ...
0
votes
9answers
571 views
PHP if-then-else statement not working
My url is something such as: "inventory.php?sorting=1" and so forth. Page loads fine but does not display the information properly.
mysql_connect("localhost","user","pass");
...
0
votes
6answers
604 views
What is a safe way to read the PHP $_REQUEST superglobal?
I am trying to read get parameters in such a way that will not open up potential security issues.
What I was thinking was matching the request parameter explicitly to what I expect and then setting a ...
0
votes
5answers
637 views
PHP how to use string as superglobal
I'm building a small abstract class that's supposed to make certain tasks easier.
For example:
$var = class::get('id');
would run check if there's pointer id in the $_GET, returning a string or array ...
-1
votes
2answers
94 views
PHP Array key strings without quotation marks
I am moving the files to the server and is using variables like $_GET[mode] without ''(single quotes) in 'mode'. It works perfectly locally but on the server i am getting notices.. How can i overcome ...
-1
votes
8answers
404 views
$_GET and isset()
I am getting tried of if isset($_GET['whatever'])... before the rest of my if statement. E_NOTICE errors are way to handy to turn off and for $_POST variables I have a solution in my init script..
...