--- In php-list@yahoogroups.com, "Bob" <[EMAIL PROTECTED]> wrote:
> Hi Tomás,
> You need to have session_start(); in every page that you want to
keep the session alive.
> 
> <?php
> session_start();
> 

Session vars can still get lost when moving between pages.

It is a good idea to also issue session_write_close() before
generating any html output or switching to another page.

 session_write_close();
 header("location: newpage.html");
 ?>

Greg
Sites4All.net

Reply via email to