NetAdminTools.com
 
SignalQ Sites:
NetAdminTools - Coprolite - NoNIC - SpotBridge - NAW
RoboCoop - AreWeDown - SolarPower - SysAdminTools
Xfig - Gold Loaf - GeekPapa - FixGMC - MCJ - FixRambler
Categories:
GNU/Linux | Homebrew designs | Perl | Administration | Backup/Recovery | Bugs/Fixes | Certification | Database | Email | File/Print | Hardware | Information Grab Bag | Interoperability | GNU/Linux ABCs | Monitoring | Name Resolution | Network Services | Networking | Remote Control | Security | Desktop | Web | BSD | Solaris | GIAGD | REALbasic

Last 30 Days | Last 60 Days | Last 90 Days | All Articles | RSS | Hail Support


Categories:
·GNU/Linux
·Homebrew designs
·Perl
·Administration
·Backup/Recovery
·Bugs/Fixes
·Certification
·Database
·Email
·File/Print
·Hardware
·Information Grab Bag
·Interoperability
·GNU/Linux ABCs
·Monitoring
·Name Resolution
·Network Services
·Networking
·Remote Control
·Security
·Desktop
·Web
·BSD
·Solaris
·GIAGD
·REALbasic
·All Categories


Using Whois With PHP
Topic: Web   Posted:2005-01-04
Printer Friendly: Print

spacerspacer
If you would like to provide whois queries via PHP, a good package to use is available here. An example script that uses this package is:

<?php
include("whois/main.whois");
$whois = new Whois($_GET['query']);
$result = $whois->Lookup();
echo "<pre>";
for($i=0;$i<count($result[rawdata]);$i++)
{
$row = each($result[rawdata]);
echo $row["value"]."\n";
}
echo "</pre>";
?>

The query variable is arbitrary. You can call that anything you want. The whois function has an array in it called rawdata. The for loop just iterates through all values of the array. Simply call this with url?query=domain.com, and it will return the whois information. This will work with IP addresses as well, so you can easily add this to your log viewer to click on the address to get the whois info.




Please read our Terms of Use
Microsoft, Windows, Windows XP, Windows 2003, Windows 2000, and NT are either trademarks or registered trademarks of Microsoft Corporation. NetAdminTools.com is not affiliated with Microsoft Corporation. Linux is a registered trademark of Linus Torvalds, and refers to the Linux kernel. The operating system of most distributions that contain the Linux kernel is GNU/Linux. All logos and trademarks in this site are property of their respective owner. Copyright 1997-2008 NetAdminTools.com

Created by:
MCJ
MCJ CMS