From: "Sommai Fongnamthip" <[EMAIL PROTECTED]>
To: "Hugh Bothwell" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Wednesday, July 25, 2001 10:37 PM
Subject: Re: [PHP-DB] Re: new data detect
>
> At 22:28 25/7/2001 -0400, Hugh Bothwell wrote:
>
> >"Sommai Fongnamthip" <[EMAIL PROTECTED]> wrote in message
> >[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > > Hi,
> > > I decide to make real time application (like stock market or online
> > > news). How could I know when new data arrive to table and retrieve
them
> >to
> > > display or update in web page?
> >
> >You can't, actually, short of using server-side push;
> >
> >what you can do is periodically requery the server; either reload the
page
> >every so often, or (better) use a flag file - set it when data is
changed -
> >and check it in the background with JavaScript, then reload the page only
> >when it is set.
>
> Why PHP cannot do background check with the same of Java Script?
Because:
(a) JavaScript runs on the client, so it can periodically call the server;
PHP runs on the server, has no way to contact the client (short of
server-side push ie a continuous connection).
(b) JavaScript can run continuously (by setting a timer); PHP only runs when
called.
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]