---- datatable ---- cols : %title% , Plugin Name, Developer, Description, last Update dt, download_url headers : , Plugin Name , Author , Descriptio, last Update, download filter : type=Aligning sort : Plugin Name ---- ====== Überschrift ====== ---- datatable ---- cols : %title% , Plugin Name, Developer, Description, last Update dt headers : , Plugin Name , Author , Descriptio, last Update filter : type=Registration sort : Plugin Name ---- ===== cloud ===== ---- datacloud ---- field: Developer min: 1 limit: 20 ---- function getwhois($domain, $tld) { require_once(“whois.class.php”); $whois = new Whois(); if( !$whois->ValidDomain($domain.‘.’.$tld) ){ return ‘Sorry, the domain is not valid or not supported.’; } if( $whois->Lookup($domain.‘.’.$tld) ) { return $whois->GetData(1); }else{ return ‘Sorry, an error occurred.’; } } $domain = trim($_REQUEST[‘domain’]); $dot = strpos($domain, ‘.’); $sld = substr($domain, 0, $dot); $tld = substr($domain, $dot+1); $whois = getwhois($sld, $tld); echo “
”;
        echo $whois;
        echo “
”;