PHP Classes

File: example.php

Recommend this page to a friend!
  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: 14 years ago
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.";
    }
?>