summaryrefslogtreecommitdiff
path: root/main/php_variables.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Get the license right... (this won't make it to RC1 of B4)Zeev Suraski2000-02-191-2/+2
|
* Worked on beautifying rfc1867.c a bitZeev Suraski2000-02-191-13/+33
| | | | | | @- Introduced $HTTP_POST_FILES[], that contains information about files uploaded @ through HTTP upload (Zeev)
* Make POST handling the way it should be. RFC1867, and any future POST ↵Zeev Suraski2000-02-171-52/+50
| | | | | | | | | | handlers we might have in the future now obey to the variables_order directive, and there's a real way modular way to handle POST content. This is all untested, BEFORE_SAPI_POST_PATCH_17_FEB_2000 tagged before submission @- Made multipart/form-data content obey to the variables_order directive (Zeev)
* @- Fixed RFC1867 file upload under Windows (Zeev)Zeev Suraski2000-02-151-1/+12
| | | | | Fixed a memory leak
* - Improve startup speed a bit by using the hash_*_ptr() functionsAndi Gutmans2000-02-131-6/+6
|
* - Change the argument order of php_register_variable() to something moreZeev Suraski2000-01-291-3/+3
| | | | | | intuitive. - Make the authentication variables be a part of the HTTP_SERVER_VARS[] array
* - A few fixesZeev Suraski2000-01-281-1/+1
| | | | | - Added register_argv_argc directive to allow disabling of argv/argc
* Tried to centralize global variable registration as much as possible:Zeev Suraski2000-01-281-0/+317
- Added $HTTP_ENV_VARS[] and $HTTP_SERVER_VARS[] support, which similarly to $HTTP_GET_VARS[], contain environment and server variables. Setting register_globals to Off will now also prevent registration of the environment and server variables into the global scope (Zeev) - Renamed gpc_globals to register_globals (Zeev) - Introduced variables_order that deprecates gpc_order, and allows control over the server and environment variables, in addition to GET/POST/Cookies (Zeev)