Forum Moderators: phranque
Thanks, Pat
$_POST[variablename]
or
$HTTP_POST_VARS[variablename]
See PHP Predefined Variables [php.net] for more info.
Using Register Globals [php.net]
register_globals is a nasty potential security hole and most PHP installation come with it turned off these days. You don't gain anything by turning it on - expect the ability to be a bit lazier in your code.