Marek,

Thank you very much.

"Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Jonathan Zhang wrote:
> > test.php
> > -->
> > <?
> > session_start();
> > ?>
> > <form>
> > <input type="text" name="test">
> > </form>
> >
> > For Win2kpro+netscape 4.7,all form data you enter in this page will lost
> > when resize the browser's window size, ns4.7 have reload this page when
> > resize the window.
> > But if you remove the session_start() from this page, the issue will not
> > exist.
> >
> > Is there any solution for it?
> >
> > thanks,
> > Jonathan Zhang
> >
>
> Netscape 4.x has this annoying behavior, it tries to fetch a fresh copy
> whenever you resize window, view source code or print the page.
>
> You might try to use session_cache_limiter() function to control the
> cache headers send, try private_no_expire first. Do not set it to public
> if the page contains private information.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to