$_REQUEST url info

I have an automated account activation,
ie: user must click on link in e-mail to activate their account where it sends them to a php page that forwards them on to a html page once it has activated the account.

This works

[color=blue]activate.[color=yellowgreen]php[/color]?id=8&code=d02d841fd25[/color]

[color=blue]

[color=blue]$userid = $_REQUEST[‘id’];[/color]
[color=blue]$code = $_REQUEST[‘code’];[/color]

[/color]

My problem is that I don’t want to send them to a php page, I want to send them straight to my flash guest book and have it activate the account.

So can I pull the “id” and “code” from the html url ?

[color=blue]activate.[color=yellowgreen]html[/color]?id=8&code=d02d841fd25[/color]

[color=black]Or can I put my swf into a php page ?[/color]