<?php
include_once("QXml.class.php");
include_once("QWhoIsIp.class.php");
$array = array("213.217.37.242", "83.98.158.11", "12.0.0.0");
$whois = new QWhoIsIP($array);
$xml = new QXML;
$xml->toXML($whois->getResult());
header("content-type:text/xml");
echo $xml->asXML();
?>
|