Re: [PHP-DB] Session don't store after header("Location: ...")

2006-03-27 Thread Philip Hallstrom
Philip Hallstrom ha scritto: Don't use Header("Location:..."). Instead spit back very minimal javascript that does something like: document.location.href = '.'; That way the cookies that get sent back in the header will take affect. I have to use header("Location..."), cause I'm using

Re: [PHP-DB] Session don't store after header("Location: ...")

2006-03-27 Thread Giacomo
Philip Hallstrom ha scritto: Don't use Header("Location:..."). Instead spit back very minimal javascript that does something like: document.location.href = '.'; That way the cookies that get sent back in the header will take affect. I have to use header("Location..."), cause I'm using

Re: [PHP-DB] Session don't store after header("Location: ...")

2006-03-27 Thread Philip Hallstrom
Hi everybody, I have a problem with mysql session handler and redirect. My situation: - mysql session handler - one page is "posted" to another page, that saves a session variable and redirect to the first page again. If I do the redirect the variable is not properly setted, otherwise it's all o

[PHP-DB] Session don't store after header("Location: ...")

2006-03-27 Thread Giacomo
Hi everybody, I have a problem with mysql session handler and redirect. My situation: - mysql session handler - one page is "posted" to another page, that saves a session variable and redirect to the first page again. If I do the redirect the variable is not properly setted, otherwise it's all o