I need to call a sequence of operations and show the progress of the calls and the results of an already completed operation on one page in PHP. The operation may be a command line call or database update. Content should be updated after each command. What is the best way to do this in PHP. Is there any library I could use?
EDIT: Here I am not actually looking for a terminal emulator. I need to perform a sequence of operations. An operation can be anything (a function call that returns the result). I need to show the result. I was wondering if there is a framework for this. If not, what is the best way to do this?
source
share