Wrox Home  
Search P2P Archive for: Go

  Return to Index  

pro_php thread: Regarding acknowledgement from browser


Message #1 by "S.ArunSrinivasan" <arun@o...> on Mon, 22 Apr 2002 17:13:11 +0530 (IST)
Hi,

PHP does not print anything in the client's browser.  All that PHP does is create output for the web server to send.  Your PHP
script creates the output (usually in the form of HTML) and then stops executing.  The web server then sends the results in the form
of HTTP to the client.  By the time the client receives it, the PHP script is no longer executing.  There is no live connection
between the browser and PHP, so there is no backward communication.  It sounds like you want Java.

-- Christopher


On Tue, 30 Apr 2002, S.Arun Srinivasan wrote:

> Hai ,
>
> 	I am running a php script which prints a statement in client's
> browser using for loop.(The print statement varies from 1 KB to 10240 KB).
>
> My problem is that browser should say that it started printing in client's
> browser with an acknowledgement to my php script.And also when it has
> finished it should say that it has ended printing in client's browser
> with an acknowledgement to my php script program.Is there any way to
> solve it.If possible please send me how to do it.
>
> Bye & Regards,
> S.Arun Srinivasan.


  Return to Index