Thanks devin, that was exactly what I was looking for!
Grumbler: I would only want to do this with a select few variables that I want to be settable with both GET and POST. I figure it is rather secure if I know exactly which variables I'm importing from GET/POST, as opposed to register_globals, which might set any variable without my knowing it. The latter, I agree, opens for potential security problems.
devin wrote:
if you are using PHP >= 4.1.0 then you can use the $_REQUEST super global array. It contains all user submitted data regardless of method