Re: [PHP] possible IE problem

2006-07-12 Thread Richard Lynch
On Mon, July 10, 2006 10:55 am, Schalk wrote: > Now that the parse error is fixed the login script works fine in FF > but > in IE it does not do the redirect. Is there a reason why this code may > not work in IE? Is there a better way to do this? > > $_SESSION['email'] = $email; > $_SESSION['member

Re: [PHP] possible IE problem

2006-07-10 Thread Larry Garfield
This is an issue with the session not being closed properly on a redirect. IE seems to be more bothered by this than Firefox, for reasons I don't quite understand. The solution is to explicitly close the session yourself. See: http://www.php.net/manual/en/function.session-start.php#57875 http

[PHP] possible IE problem

2006-07-10 Thread Schalk
Greetings All, Now that the parse error is fixed the login script works fine in FF but in IE it does not do the redirect. Is there a reason why this code may not work in IE? Is there a better way to do this? $_SESSION['email'] = $email; $_SESSION['memberpassword'] = md5($memberpassword); head