Eli wrote:
Hi..
Thanks for your help. I searched a bit more, combined with your data, tested, and found a solution. :-)
Oops.. forgot the most important line..


#!/usr/local/bin/php -q
<?php
//initialize parameters:
if ($argc<2)
   exit("ERROR: session id must be provide as parameter.\n");
$sid=$argv[1];

//initialize session:
ini_set("session.use_cookies","0");  //use no session cookies
session_cache_limiter(null);  //use no session cache limiter
session_id($sid);  //set the session id as got from parameter 1
session_start(); //start the session

//read the session variables: echo $_SESSION["name"]; ?>


-thanks, Eli
-thanks, Eli

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



Reply via email to