Basically, how to do the equivalent to this PHP :
<?php
session_start();
if (!isset($_SESSION['count'])) {
$_SESSION['count'] = 0;
} else {
$_SESSION['count']++;
}
?>
If I open a new browser tab in the same browser/computer, both pages will increase Session.count, sharing its value. Both uses the SAME SESSION.
But if a open the same page in another computer, a NEW SESSION starts, with a new count.
PHP session_start() uses a Session.Cookie behind the scenes for this.
Looks like Xojo ALWAYS starts a new Session, and it makes Sessions kind of useless for multi-tabbed views.
I surely don’t know how Xojo Web works with sessions, and couldn’t find the directions using the manual.