RE: Re[2]: [PHP] Dnsquery

2001-08-17 Thread Jon Haworth
>> I think you need to assign it to a variable and then echo that: >> $dnsquery = exec("dnsquery -h domain.net"); >> echo $dnsquery; >> > This is from the manual: > "exec() executes the given command, however it does not output > anything" > Use system instead. Well, don't trust everything you re

Re[2]: [PHP] Dnsquery

2001-08-17 Thread Gianluca Baldo
JH> I think you need to assign it to a variable and then echo that: JH> $dnsquery = exec("dnsquery -h domain.net"); JH> echo $dnsquery; This is from the manual: "exec() executes the given command, however it does not output anything" Use system instead. Cheers, Gianluca JH> -Origina