| Article: |
Three-Tier Development with PHP 5 | |
| Subject: | use _POST for x, y, z | |
| Date: | 2004-12-15 15:41:08 | |
| From: | lycruzc | |
|
Response to: use _POST for x, y, z
|
||
|
Hi friend, for that work without _POST; You should activate the var :
|
||
Showing messages 1 through 1 of 1.
-
use _POST for x, y, z
2005-03-14 12:08:48 eriksays [View]



register_globals = ON is a SERIOUS SECURITY VIOLATION that can allow a user to hijack the session data with their own variables.
keep register_globals = OFF and just use $_POST or $_GET to grab your form variables.