PHP Classes

File: EgFriendBirthdays.php

Recommend this page to a friend!
  Classes of Md. Aminul Islam   Birthday Ordering   EgFriendBirthdays.php   Download  
File: EgFriendBirthdays.php
Role: Example script
Content type: text/plain
Description: Example
Class: Birthday Ordering
Retrieve user database records sorted by birthday
Author: By
Last change:
Date: 17 years ago
Size: 512 bytes
 

Contents

Class file image Download
<?
   
/*
        Developed By: Md. Aminul Islam.
                        Email: aminulsumon@yahoo.com
       
        This class is very usefull for you to find out all members name and upcoming birthdays.
        Any advice or correction for this class will be highly appreciated.
    */

   
include "ClsFriendBirthdays.cls.php";
   
$ObjBirth=new ClsFriendBrithdays; // Establish connection

   
$ObjBirth->MyId=3;
   
$ObjBirth->ComingBirthdayFriendsId();
   
/*echo "<br>Array values<br>";
    $ObjBirth->ArrayValues();*/
   
$ObjBirth->DisplayMemInfo()
?>