Is it possible to store arrays inside of session variables?

I mean is this a valid statement?

$HTTP_SESSION_VARS["Crumbs"][0] = "1";
$HTTP_SESSION_VARS["Crumbs"][1] = "2";

foreach ($HTTP_SESSION_VARS["Crumbs"] as $k => $v) {
        echo "$v ->";
}

Regards,
Johnny Nguyen

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to