Coding like this, while now might make sense, will cause problems if you want to update your application and maintain it. I suggest you scrap this idea, and instead just make sure you validate everything separately. If a user is muddling with GET vars, this should be discovered by you're control structures and variables should sanitized where appropiate (ie. database querying, displaying, etc).
You should use the super-globals in the form of $_*, where star can be for instance:
GET
POST
COOKIE
.....
and so on.
Then, turn register globals off. This will enhance security and allow you to track variables origination better.
Good Luck