PHP Classes

File: example1.php

Recommend this page to a friend!
  Classes of Giulio Bai   DCHK   example1.php   Download  
File: example1.php
Role: Example script
Content type: text/plain
Description: Example #1
Class: DCHK
Check the availability of a domain name with whois
Author: By
Last change:
Date: 17 years ago
Size: 178 bytes
 

Contents

Class file image Download
<?php

include_once('dchk.php');

$free = new DCHK();

if(
$free->check_domain("example.com"))
    echo
"Domain available!";
else
    echo
"Domain already registered :(";

?>