From ee308cfd1b2161fe693cb9150af36ce934beda42 Mon Sep 17 00:00:00 2001 From: mauirixxx Date: Wed, 24 May 2017 21:08:23 -1000 Subject: [PATCH] debug time --- gw-login.php | 1 + 1 file changed, 1 insertion(+) diff --git a/gw-login.php b/gw-login.php index 9c458fa..dcabc1c 100644 --- a/gw-login.php +++ b/gw-login.php @@ -2,6 +2,7 @@ session_start(); if (isset($_SESSION['userid']) && ($_SESSION['access'])){ echo 'Proceed to character selection here
'; //really should automate this + echo 'Your session userid is ' . $_SESSION['userid'] . ' and your access is ' . $_SESSION['access'] . '
'; } else { include_once 'gw-connect.php'; $con = new mysqli(DATABASE_HOST, DATABASE_USER, DATABASE_PASS, DATABASE_NAME);