| Sign In/My Account | View Cart |
| 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 2 of 2.
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.