Is there a way / is it possible to execute the unix whois query using php, possibly using system().?
I am trying
echo '<pre>';
$last_line = system('whois ryansmurphy.com', $retval);
echo '
</pre>
<hr />Last line of the output: ' . $last_line . '
<hr />Return value: ' . $retval;
but it doesnt work. what am i doing wrong?
Am seeing nothing, no errors, no output.