PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of De Rosa Luigi   PHP Facebook Chat   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example
Class: PHP Facebook Chat
Send chat messages to friends in Facebook
Author: By
Last change:
Date: 14 years ago
Size: 207 bytes
 

Contents

Class file image Download
<?php
include("facebook.class.php");

$obj = new FacebookChat("lurukee@gmail.com", "mypassword");
$obj->login();
print_r($obj->buddylist());
$obj->sendmsg("Hey jhonny, how are u?", "my_friend_id");
?>