6 lines
77 B
PHP
6 lines
77 B
PHP
|
<?php
|
||
|
if(isset($_GET['fqdn'])){
|
||
|
echo gethostbyname($_GET['fqdn']);
|
||
|
}
|
||
|
?>
|