Thread
:
$_POST and $_GET
View Single Post
#
5
(
permalink
)
07-15-2006, 01:32 PM
Jordan
Join Date: Nov 2005
Location: Hendersonville, NC
Posts: 9,559
Last Blog:
Ext JS or Ext GWT
Rep Power:
20
You can always extract the data as well. Do this at the top of your scripts
PHP Code:
if(!empty(
$_GET
))
extract
(
$_GET
);
if(!empty(
$_POST
))
extract
(
$_POST
);
Works as if register_globals was set to ON
__________________
CodeCall Blog
|
CodeCall Wiki
|
Shareware Site
|
Linux Forum
|
Write a Blog
The
CodeCall Wiki
is now fully integrated with vBulletin users! Check it out and add some new pages!
Jordan
View Public Profile
Send a private message to Jordan
Find all posts by Jordan
Sponsored Links