Wrox Home  
Search P2P Archive for: Go

  Return to Index  

pro_php thread: Re: Regarding acknowledgement from browser


Message #1 by "David Jeyathilak" <david@i...> on Thu, 2 May 2002 14:25:26 +0530
I really dont know if this is what you wanted. In any case, I may have
mis-understood your query.

print ("Started Printing");
for (condn)
{
    print ....
}
print ("Ended Printing");

OR

for($i=initialvalue;$i<=endvalue;$i++)
{
    if(initialvalue)
        print ("Started Printing");

    print ......

    if(endvalue)
        print ("End Printing");
}

regards,
David


----- Original Message -----
From: "S.Arun Srinivasan" <arun@o...>
To: "professional php" <pro_php@p...>
Sent: Tuesday, April 30, 2002 2:03 PM
Subject: [pro_php] Regarding acknowledgement from browser


> 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