This topic is locked

Change "Back to Menu" buttons to dashboard

4/4/2016 11:58:26 AM
PHPRunner General questions
A
asawyer13 authorDevClub member

I have my login page as my landing page.

After successful login I redirect to my dashboard.
I would like to always return to the dashboard and not the menu when users click on the "Back to Menu" in all my forms.
Is there a reasonable way to do that?
Thanks in advance,

Alan

C
chuckbower 4/16/2016

Alan, are you on at least PHPR version 8? Can you add code in your menu page event: before page process to redirect to your dashboard? Such as:

header("Location: yourdashboard_dashboard.php");

exit();

replace yourdashboard_dashboard.php with the page name for your actual dashboard.



I have my login page as my landing page.

After successful login I redirect to my dashboard.
I would like to always return to the dashboard and not the menu when users click on the "Back to Menu" in all my forms.
Is there a reasonable way to do that?
Thanks in advance,

Alan