Hello,
I am using coppermine and have am "extra link" on the menu, however, this link is active when you are not registered/logged in. How do i check for the session on this page.
Thanks,
Don't check sessions, just check if a user is logged in or notif (USER_ID) {
// user is logged in
} else {
// user is not logged in
}
Ok, Thanks.