PHP Classes

File: example

Recommend this page to a friend!
  Classes of Manuel Peliz   MsnPlz   example   Download  
File: example
Role: Example script
Content type: text/plain
Description: example
Class: MsnPlz
Retrieve MSN Messenger user contacts
Author: By
Last change: Best front
Date: 16 years ago
Size: 474 bytes
 

Contents

Class file image Download
$msn = new msn;
echo '<pre>';
if( $error = $msn->connect('xxxxxx@hotmail.com','xxxxxxx') == 1 )
{
        $msn->rx_data();
        print_r($msn->CO); // contacts connect
        print_r($msn->FL); // contacts that you have in your list
        print_r($msn->RL); // contacts that have you
        print_r($msn->AL); // contacts that can see your state
        print_r($msn->BL); // contacts that can't see your state
}
else echo $error;
echo '</pre>';