nirv
Tue 28th Dec '04, 8:10am
I'm using the hidden login forum field to redirect after login.
This is the code:
<input type="hidden" name="forceredirect" value="1" />
<input type="hidden" name="url" value="http://mysite.com<? echo $gk_url; ?>" />
$gk_url is the variable that contains the url...for example: /page.php?var1=var1&var2=var2
The problem is that when the page is being redirected the variables tree are being chopped off, or rather this url: /page.php?var1=var1&var2=var2 is converted to: /page.php?var1=var1
This is the code:
<input type="hidden" name="forceredirect" value="1" />
<input type="hidden" name="url" value="http://mysite.com<? echo $gk_url; ?>" />
$gk_url is the variable that contains the url...for example: /page.php?var1=var1&var2=var2
The problem is that when the page is being redirected the variables tree are being chopped off, or rather this url: /page.php?var1=var1&var2=var2 is converted to: /page.php?var1=var1