Login   Register  
PHP Classes
elePHPant
Icontem

File: domain_example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Steven Pratt  >  Expired Domain Class  >  domain_example.php  >  Download  
File: domain_example.php
Role: Example script
Content type: text/plain
Description: Example Class Use
Class: Expired Domain Class
Domain information retrieval
Author: By
Last change:
Date: 2003-03-04 07:02
Size: 582 bytes
 

Contents

Class file image Download
<?
include_once("domain.class.php");
?>
<html>
<head>
 <title>Domain LookUp Example</title>
</head>
<body>
<?

$domain 
= new Domain("goclick.com");

$domain->Lookup();

$info $domain->Get();
 foreach(
$info as $key=>$val)
 {
  print 
"$key = $val<br>";
 }

if(isset(
$info['whoisserver']))
{
 
$domain->SetWhois($info['whoisserver']);
 
$domain->Lookup();
 
 
$info $domain->Get();
 
 foreach(
$info as $key=>$val)
 {
  print 
"$key = $val<br>";
 }
}
else
{
 foreach(
$info as $key=>$val)
 {
  print 
"$key = $val<br>";
 }
}

?>
</body>
</html>