$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>';
|