Date: 08/18/00
- Next message: Dennis Gearon: "[phplib] .htaccess and PHP"
- Previous message: Thomas CARRIE: "Re: [phplib] php4 and tree.inc"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hallo Liste,
was muß in die session.inc bei put_id() mit case "get" eingetragen
werden?
Nachfolgend der Source-Code.
Besten Dank
Frank
Ausschnitt aus der session.inc:
--------------------------------------------
## put_id():
##
## Stop using the current session id (unset cookie, ...) and
## abandon a session.
function put_id() {
global $HTTP_COOKIE_VARS;
$this->name =
$this->cookiename==""?$this->classname:$this->cookiename;
switch ($this->mode) {
case "inline":
die("This has not been coded yet.");
break;
----------------------------------------------
case "get":
die("This has not been coded yet.");
break;
----------------------------------------------
default:
SetCookie($this->name, "", 0, "/", $this->cookie_domain);
$HTTP_COOKIE_VARS[$this->name] = "";
break;
}
}
----------------------------------------
---------------------------------------------------------------------
To unsubscribe, e-mail: phplib-unsubscribe <email protected>
For additional commands, e-mail: phplib-help <email protected>
- Next message: Dennis Gearon: "[phplib] .htaccess and PHP"
- Previous message: Thomas CARRIE: "Re: [phplib] php4 and tree.inc"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

