tags:

views:

21

answers:

1

I have implemented hook_menu in order to set a $_SESSION var that stores the current stylesheet preference for users. Once it's set, I'd like to redirect users back to the previous page they were viewing. How can I get the value of the previous url?

A: 

I just found the answer - referer_uri() returns the value I need and drupal_goto() will do the redirect.

So to redirect a user back to the previous page: drupal_goto( referer_uri() )

limbovski