PHP Classes

File: whois.example.php

Recommend this page to a friend!
  Classes of Tom Reitsma   WhoIs This   whois.example.php   Download  
File: whois.example.php
Role: Example script
Content type: text/plain
Description: Example file
Class: WhoIs This
Get information about a domain with whois service
Author: By
Last change:
Date: 18 years ago
Size: 197 bytes
 

Contents

Class file image Download
<?php

/**
 * Whois class example script
 *
 * @package whois
 */

require('whois.class.php');

$whois = new whois($site);

$whois -> getDetails($site);

$whois -> printWhois();

$debug->dump();
?>