I have some data that I need processed and in order to process it, it has to run through 3 scripts. These scripts are all modular enough where you just pipe the output from one to the next. So now, I want to get the result of this system("echo \"$var1, $var2\"" | script1.pl |script2.pl |script3.pl"
statement and return it as html. Problem being is that 'system' returns error codes. Any ideas as to how to get this done? Thanks.
Mike
Mike