- Code: Select all
telnet localhost 8649
This return an output with xml syntax but when I try something like this in php:
- Code: Select all
$output = system('telnet localhost 8649');
echo '<pre>' . $output. '/<pre>';
The output is almost empty, it just show words like:
- Code: Select all
Trying localhost ...
Connection Done.
Thats right but it should also output the xml syntax and it doesn't. I dont know whats going on. Thanks

