[Solved] Notice: Undefined variable: [closed]
[ad_1] The error is here: if($admin_username && $admin_password && $admin_token == session_id()) It seems quite likely this is line 63. The problem is you are only defining $admin_username if $_SESSION[‘admin_username’] is set. Although you don’t show it in your code example, I’d presume that the same thing is true of $signin_username. Solution #1 – use … Read more