..used one or more modules you must have seen the iframes used for realtime result display. In this tutorial I'm going to show you how to insert them into your module and how they..
<?php
if(!function_exists("dns_get_record")){
die("Function <b>dns_get_record</b> is required for this action.");
}
function GetDNS($sInput){
if(false==($aResult = @dns_get_record($sInput))){
return("No DNS records found.");
}
return(var_dump($aResult));
}
?>