[Solved] How do I store whois result to MySQL [closed]


According to my understanding, if you want to save info with then take db structure as:

whois_table
{
id (num)(pk)
ip (varchar)
info(long text)
}

Assume you have info like: http://www.whois.net/whois/facebook.com

$ip = IP who’s whois info to be inserted
$info = whois info of ip

INSERT INTO whois_table (ip, info ) values ($ip, $info);

4

solved How do I store whois result to MySQL [closed]