Page 1 of 1

Icon Menu: Log Out?

Posted: Fri Apr 24, 2026 6:32 am
by AliGW
I have an icon menu that has a link to the login page for my members' only area. In the members' only area, there is going to be a matching menu to navigate the secure area. Where on the main site's menu I have the Log In option, I'd like to have Log Out in the members' area. Is it possible to add the logout script to a menu button?

https://www.eastipswichcameraclub.co.uk/

Re: Icon Menu: Log Out?

Posted: Fri Apr 24, 2026 10:00 am
by Pablo
What you can do is link a dedicated logout page, where you add this script at the start of the page.

Code: Select all

<?php
session_start();
unset($_SESSION['username']);
unset($_SESSION['fullname']);
unset($_SESSION['role']);
?>

Re: Icon Menu: Log Out?

Posted: Fri Apr 24, 2026 10:29 am
by AliGW
So an empty page with just that code? And do I set that to divert immediately to the index page?