Files
librenms-librenms/html/whois.php
T

11 lines
121 B
PHP
Raw Normal View History

2007-04-03 14:10:23 +00:00
<?php
$output = `/usr/bin/whois $_GET[query] | grep -v \%`;
$output = trim($output);
echo("<pre>$output</pre>");
?>