I have a batch file that displays a list of registry keys.
10000 20000 30000 40000 ..etc.
Using PHP, I can display the output of the batch file:
echo exec('file.bat');
This only shows me 40000 though, not the other three entries. How can I see everything?