PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of ghulam mustafa   MSN Contact list Grabber   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example usage
Class: MSN Contact list Grabber
Grab the list of contacts of a MSN Messenger user
Author: By
Last change:
Date: 18 years ago
Size: 164 bytes
 

Contents

Class file image Download
<?php
include('msnlistgrab.php');
$gm = new msnlistgrab();
$gm->GetRecords();
foreach (
$gm->res as $val)
{
    echo
$val .'<BR>';
}
echo
'<hr>'.$gm->total;
?>