Hi, using a cgi script I want to output the results of several process as they finish to a web page. For example say I have process1,process2,process3 and each one needs to run before the next and I want to output the result of each to a web page as it returns it's output.
ie:
<html>
run process1...
print output
run process2...
print output
run process3...
print output
</html>
Does this make sense?
Can anybody point me in the right direction?
tia..