Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Mihir Kadiwala  >  NDNC Registration Checker  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example source
Class: NDNC Registration Checker
Check whether a number is registered in NDNC
Author: By
Last change:
Date: 2010-08-18 21:49
Size: 270 bytes
 

Contents

Class file image Download
<?php
    
require_once("class.NDNCRegistrationChecker.php");

    
$NDNCRegistrationChecker = new NDNCRegistrationChecker();
    if(!
$NDNCRegistrationChecker->Check("1234567890"))
    {
        echo 
"Number is not registered.";
    }
    else
    {
        echo 
"Number is registered.";
    }
?>