The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
16 views

How is PHP's $_SERVER[REQUEST_TIME] set?

What happens on the server to set the request time? Does it take into account the timezone for which the server is configured? I'm asking because I need to know, if I have a site that has a timezone ...
2
votes
1answer
30 views

Using isset or @ to test/assign a superglobal variable

Can I use @ instead of isset to assign or test superglobal variable ? Use this : $foo = intval(@$_POST['bar']); Instead of this : $foo = isset($_POST['bar']) ? intval($_POST['bar']) : 0; works ...
0
votes
1answer
60 views

PHP: write in php://input

I would like to know how I could write something in "php://input". Actually I would like to know if I can use this stream like a superglobal. Example with $_POST file1: $_POST['param'] = "test"; ...
4
votes
2answers
52 views

$GLOBALS superglobal gets modified when passed to a function

I came across some weird behavior in PHP: function f($var) { // not using references foreach ($var as $k => $v) { unset($var[$k]); // shouldn't this unset from a copy?! } } print ...
0
votes
3answers
106 views

What is the alternative of $_SERVER['PHP_SELF']?

My current address is: http://localhost/bookstore/bookedit.php?book_id=12 The $_SERVER['PHP_SELF'] variable is a string '/bookstore/bookedit.php', But I would like to get the string ...
0
votes
1answer
112 views

Using PHP, Load content from a CSV file and filter it to meet user input criteria and output in to a table

Right, So I have a CSV file with data stored like this; name,author,isbn,price name,author,isbn,price name,author,isbn,price name,author,isbn,price What I'm trying to do is to use a value in the ...
-1
votes
2answers
58 views

Why are Superglobals Such a bad thing to turn on?

I have searched through Stack Overflow, with the search bar and only got 4 posts which state these are bad things to turn on. No full reasons as to why? So i am posting this question to find out ...
0
votes
1answer
65 views

$_SERVER in Aptana don't show elements

In DreamWeaver when we type $_SERVER, dreamweaver will open a dropdown menu to select an element, but in Aptana we don't have this option, is there any way to add this option to Aptana?
-4
votes
4answers
71 views

Using the $_FILES superglobal

I would like to use $_FILES['name']['size'] to see if the size of the file being uploaded is bigger than 1MB. How can I do this? What do I use for the size in my if statement? Like this?: if ( ...
1
vote
2answers
77 views

Unexpected conversion of $_GET[“var”] to integer

I have the following snippet in a page running under PHP 5.4.10 (notice the === in comparison). $list_all_pages = False; $reqs_per_page = 50; $start_page = 0; if (isset($_GET["p"])) { ...
-1
votes
1answer
103 views

is $_POST in php truly superglobal? [closed]

Why am i asking this ? I'm trying hard to fathom php's superglobal concept ... array data/variables for $_POST are only available to the file to which the form posts back. They are not available ...
2
votes
4answers
101 views

Stop PHP from creating arrays in $_POST superglobal

PHP will automatically convert <input type="text" name="foo[0]" value="x" /> <input type="text" name="foo[1]" value="y" /> into $_POST['foo'] = array( 0 => 'x', 1 => 'y' ...
0
votes
3answers
152 views

changing from dropdown menu to mutli select open box

I have a drop down menu that I want to change to a multiple select box. The code below is working if you only select 1 option (the way I had it before), but of you select 2 it will only show 1 of the ...
5
votes
4answers
157 views

Is it possible to trigger an error when $_POST or another superglobal is accessed?

I have this framework project kind of on the backburner where I want to enforce the use of an Input class to access all superglobals like $_POST, $_GET and $_SERVER. A recent question here reminded me ...
0
votes
2answers
152 views

PHP - CMS Recommendation For Licensing Type Script

So I'm trying to make my own mini CMS, and just for my knowledge once I get it good enough, and I know enough, I'd like to sell it. Now for licensing, I know there's tons of licensing scripts you can ...
0
votes
4answers
83 views

php remembering a session

Im trying to stop users of my spacebook page from navigating to other pages without having logged in first. I understand I am supposed to use session variables. I know I have the user remembered on a ...
4
votes
2answers
136 views

Is there a good alternative to $_SERVER['SERVER_NAME']?

I read the following comment on PHP doc pages: "Be warned that most contents of the Server-Array (even $_SERVER['SERVER_NAME']) are provided by the client and can be manipulated. They can also ...
0
votes
2answers
64 views

Custom variable which can be used on each page like super globals?

I want a variable to be superglobal, but as am using procedural style I don't think I can make one of my own, so basically the question is that am using a query to retrieve all security control of my ...
1
vote
2answers
67 views

What exactly does it mean to “register” a variable

This is regarding the PHP global variables. Does it mean the global variables are simply assigned values through the HTTP request(ie: Varaibles where pre-existing but without values), or that the ...
2
votes
2answers
270 views

Variable variables and superglobals

I'm transitioning a huge PHP software from PHP4 to PHP5 and among the many (many) problems I'm facing, the biggest one so far seems to be that the previous programmer just banqueted over the ...
0
votes
1answer
29 views

PHP-CLI script doesn't know $_SERVER when called by Apache?

here's a weird one: I have a PHP-CLI script that runs just fine when called from a shell. But when I have apache execute it via system() it seems to forget about all the superglobals (or at least ...
1
vote
2answers
4k views

Getting $_GET parameters from route in Zend Framework 2

Zend Framework 1 had a very simple way of parsing URL routes and setting found params in the $_GET superglobal for easy access. Sure, you could use ->getParam($something) inside the controller, but if ...
1
vote
3answers
123 views

Why setting superglobal variable $GLOBALS['foo'] doesn't work?

The following code produces a warning: <?php $GLOBALS['foo'] = "Example content<BR><BR>"; echo $foo; // that works! Test(); function Test() { echo $foo; // that doesn't work! } ...
1
vote
1answer
58 views

$GLOBALS being cleared in URL included page

When I include a page using it's full URL (like include 'http://mysite.tld/mypage.php'), I can't use the $GLOBALS in mypage.php, it returns Undefined index error. But when I include it using it's ...
1
vote
3answers
433 views

What happens if you assign a value to $_REQUEST?

I recently came across this line in a PHP script: $_REQUEST['start_date']=$date; Is it allowed or useful in any way to assign something to the super global $_REQUEST variable? If there is a ...
3
votes
1answer
214 views

Is $GLOBALS variable disabled on CodeIgniter framework?

I'm trying to add Evernote SDK on my CodeIgniter installation, but not all classes are loaded, it's pretty weird :S. I notice that Evernote SDK do an extensive use of $GLOBALS, and I think that my ...
2
votes
1answer
254 views

how safe is $_SERVER[“HTTP_HOST”]?

I have a database full of website urls, the primary key is the $_SERVER["HTTP_HOST"] of the website. When a user navigates to ... lets say www.my-epic-example-url.com, It will connect the the ...
0
votes
1answer
58 views

Accessing a variable declared within a function within a class (PHP)

I am working on a script for a site where users can create accounts and upload data, which can later be searched and accessed by the public. As part of my upload class, I have a function to rename ...
1
vote
4answers
133 views

php super globals, how to use them

small question, is it better to do $HOST = $_SERVER["HTTP_HOST"]; and use $HOST throughout my web application OR is it better to do define ( "HOST", $_SERVER["HTTP_HOST"] ); and use HOST ...
0
votes
2answers
40 views

Check where is located flash file sending request to PHP

I have a flash file that is located on my website and I have a php file wich gets requests from flash file every 5 minutes. I want to be shure that flash file wich is sending request is located on my ...
1
vote
1answer
280 views

Form action with parameters - parameters are not in $_GET or $_POST

I am working with re-implementing a REST API for which client has no source code and is losing access to server... I am finding the the caller is sending posts but without posted data. All of the ...
0
votes
1answer
123 views

PHP MySQL Constant or Super Global

I'm working on a PHP/MySQL project that requires accessing multiple databases. Previously, when I only needed to access one database, I had defined constants for the database server, username, ...
1
vote
3answers
691 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, ...
0
votes
1answer
36 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
185 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 ...
-1
votes
2answers
808 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 ...
0
votes
3answers
282 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
264 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 ...
2
votes
3answers
766 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
115 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 ...
0
votes
2answers
79 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 ...
2
votes
1answer
216 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 ...
0
votes
3answers
105 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 ...
1
vote
5answers
2k 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?
4
votes
3answers
257 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. ...
1
vote
2answers
1k 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, ...
2
votes
2answers
264 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 ...
5
votes
7answers
498 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, ...
4
votes
2answers
184 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. ...
0
votes
1answer
422 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 ...

1 2