hello,

i've been working on this website for a while (www.scfan.net), but for some reason the page: /gameinfo.php has an error with the session code. i'm using this code on every other page on the website too. but only /gameinfo.php and /livestream.php and /tac_protoss.php have the problem.

could anyone help me out here? because i'm at a loss.

here is the codee i use to validate people trying to log in:

if (!isset($_SESSION)) {
  session_start() ;
}

Recommended Answers

All 2 Replies

You need to start the session before any other output is sent to the browser, because it sends a PHPSESSID cookie in the response headers.

Just do the session_start() on the very beginning of the script and without the if statement.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.