|
Posted by Rik Wasmus on 09/02/07 14:21
On Sun, 02 Sep 2007 16:17:01 +0200, philbo30 <masferfc@gmail.com> wrote:
> I have data processing that takes place via an application written in
> C. I also have a .php webpage that displays a chart of the results via
> the Netscape 4.79 browser. Currently, manual intervention is required
> to refresh the web page and show the process results. I need to fully
> automate this process.
>
> In a nutshell, the browser window needs to be automatically refreshed
> as soon as my application completes its processing. In other words,
> the application gets a new last step, the web-page refresh.
>
> I suspect that this might be a call to a Netscape function, but it
> might be possible with .php as well. Thoughts?
Not possible using only PHP (well, at least not when the UA & the HTTP
server aren't on the same box). A kludgy meta refresh (nor recommended) or
javascript would be needed. You'd poll for the 'last step done' to the
server, and if it gets a 'true' the whole page will be refreshed.
--
Rik Wasmus
[Back to original message]
|