<?php
 
/**
 
* Grab Gmail : Gmail Addressbook Grabber Class
 
*
 
* @author  :  MA Razzaque Rupom <[email protected]>, <[email protected]>
 
*             Moderator, phpResource (http://groups.yahoo.com/group/phpresource/)
 
*             URL: http://www.rupom.info  
 
                   http://rupom.wordpress.com
 
* @version :  1.1
 
* @date       05/25/2006
 
* Purpose  :  Grabbing Your Gmail Addressbook
 
*/
 
 
  require_once("GrabGmail.class.php");
 
  
 
  $login = 'yourgmailid';//without "@gmail.com"
 
  $password = 'yourgmailpassword';
 
  $cookiePath = '/path/to/cookie/dir';  
 
 
  $obj = new GrabGmail();
 
  $obj->setLoginInfo($login, $password);
 
  $obj->setCookiePath($cookiePath);
 
  $obj->setProxy("proxy.proxydomain.com:port");
 
  $obj->prepareContactList();
 
  $obj->dBug("========== All Contacts of <b>$login@gmail.com</b> ==============");
 
  $obj->dBug('---- Contacts in Table ------');
 
  $resultTable = $obj->getResultTable();
 
  $obj->dBug($resultTable);
 
  $obj->dBug('---- Contacts in Array ------');
 
  $resultArray = $obj->getResultArray();
 
  $obj->dBug($resultArray);    
 
?>
 
 |