/home/techb158/workloadmatch.com/api/chat
NameSizeModeActions
fetch.php20340644editdlrm
send.php13190644editdlrm
test.php9080644editdlrm
unread_count.php7450644editdlrm
Edit: /home/techb158/workloadmatch.com/api/chat/test.php (908B)
query("SHOW TABLES LIKE 'chat_messages'"); if ($r && $r->num_rows > 0) $tableExists = true; // Count messages $msgCount = 0; if ($tableExists) { $r = $mysqli->query("SELECT COUNT(*) AS c FROM chat_messages"); if ($r) $msgCount = (int)$r->fetch_assoc()['c']; } echo json_encode([ 'user_id' => $userId, 'logged_in' => $loggedIn, 'session_id' => session_id(), 'session_name' => session_name(), 'table_exists' => $tableExists, 'total_messages' => $msgCount ]);