Date: 08/31/01
- Next message: news.php.net: "[PHP] FTP Connection Problems"
- Previous message: Papp Gyozo: "Re: [PHP] passing variables between scripts?"
- Next in thread: Richard Lynch: "[PHP] Re: sessions problems :/"
- Reply: Richard Lynch: "[PHP] Re: sessions problems :/"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
i'm sorry if the solution to this problem was posted here before, but if it
was i couldn't find it.
i have an app that it's basically like this:
index.php:
$app = new App;
$app->start();
in class app:
function start() {
(....)
session_start();
if($need_auth) {
global $auth; /* another class */
if(!isset($auth)) {
$auth = new auth;
session_register("auth");
}
$auth->start();
}
(....)
}
my question is, the auth class get's registered, and the auth array inside
the auth class ($auth->auth[]) get his values recorded on the first attempt,
but, if the user tries again, it doesn't refresh the session data, oh i'm
using my session functions to write them on a mysql db, i've been debugging,
and i can see all the queries that the session stores in the db through
syslog, and for instance in $auth->start() if i change any variable like
$this->auth["username"]=$username; the data field passed to my
session_write() still has the first value not $username instead.
another question is, at what time of the script does php call my
session_write function to update the registered session?!
thanks all
--
Rui Barreiros
Software Developer
WEBSOLUT - Soluções Internet
Emailto: rui <email protected>
Personal Info: http://websolut.net/people/rui.html
As informações contidas neste email são confidenciais
e destinam-se apenas à(s) pessoa(s) a quem foi enviado:
http://websolut.net/confidencialidade-responsabilidade.html
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-general-unsubscribe <email protected>
For additional commands, e-mail: php-general-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: news.php.net: "[PHP] FTP Connection Problems"
- Previous message: Papp Gyozo: "Re: [PHP] passing variables between scripts?"
- Next in thread: Richard Lynch: "[PHP] Re: sessions problems :/"
- Reply: Richard Lynch: "[PHP] Re: sessions problems :/"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

