Training, Open Source
computer languages


PerlPHPPythonMySQLApache / TomcatTclRubyJavaC and C++LinuxCSS 

Search our site for:
Home Accessibility Courses Diary The Mouth Forum Resources Site Map About Us Contact
Session demo in a nutshell

Posted by admin (Graham Ellis), 3 September 2002
This tiny demosntration sets up a session, registers a variable, maintains state, and eventually destroys the session.   Users start at "7" and keep doubling the number until they're over 200, at which point the demo finishes.

Works beautifully, even when there's lots of users around at the same time!


Code:
<?php
session_start();
if (! session_is_registered("sofar")) {
       session_register("sofar");
       $sofar = 7;
} else {
       if ($sofar < 200) {
               $sofar *= 2;
       } else {
               session_destroy();
       }
}
?>
<title>Stepping up!</title>
<body bgcolor=white >
<h2>Demonstration of a session</h2>
Value is ... <?php echo $sofar;?>
</body>






This page is a thread posted to the opentalk forum at www.opentalk.org.uk and archived here for reference. To jump to the archive index please follow this link.


WELL HOUSE CONSULTANTS LTD.: Well House Manor • 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 01144 1225 708225 • FAX: 01144 1225 707126 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho