Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Basic session variable help – create session to enable background onload Reply To: Basic session variable help – create session to enable background onload

#171256
__
Participant
session_start();
if (!isset($_SESSION['backgroundLoad'])) {
  $_SESSION['backgroundLoad'] = 0;
} else {
  $_SESSION['count']++;
}

backgroundLoad will always be 0. You never increment it.

I would also suggest comparing loadit to 0 (instead of ""), since that’s what you’re actually passing to it.