Dynamic Redirect Link After Login

Permalink
I need to be able to specify a URL instead of a cID here...

<input type="hidden" name="rcID" value="<?php echo $rcID?>" />


Is this possible?

The reason being is that the page has it's on URL parameters that are needed to determine the content. By using a cID, I will lose the ability to pass my own parameters along with the link.

 
ronyDdeveloper replied on at Permalink Reply
ronyDdeveloper
Well if you are aware about how to customize the PHP code, then simply add all your parameters as a hidden field as like $rcID. Then pass it to the controller and hold those values and redirect it with your required url.

Rony