Dear All,
I am executing a shell command through php
$command = "some mathematical calculations":
$output = exec($command);
The $output takes approximately 10 - 40 sec for its execution every time. I wanted to show a progress bar proportionate to the time of execution.
How do I do this?
Any help is of greately appreciated..!
[rajkumar]