Is there a method whereby one can retrieve all php SESSION variables on a Windows server.
I have tried:-

<?php
        session_start();
        foreach($_SESSION as $key => $val)
                {
        echo $key . " : " . $val . "<br>";
                }
?>

but this appears to only return current user variables.

--
Regards,
Alf Stockton            www.stockton.co.za

Let us endeavor so to live that when we come to die even the undertaker will be
sorry.
                -- Mark Twain, "Pudd'nhead Wilson's Calendar"
My email disclaimer is available at www.stockton.co.za/disclaimer.html

--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to