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 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: 2005-05-11 22:37
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;
?>