Passing on multiple GET variables with the “next” parameter in the URL

I'm having issues passing on multiple \[code\]$_GET\[/code\] variables with "next".I'm redirecting users to the login page:\[code\][email protected]&activate_key=1421sdxzcxz213xz\[/code\]The problem is that the activation key is treated as a second \[code\]$_GET\[/code\] parameter on the login page (along with "next"), instead of being part of the redirected $_GET.A solution would be to use cookies, is there any way I can still make this work with \[code\]$_GET\[/code\] though? Thanks!
 
Back
Top