<?php
 
 
    // example that pull the contacts details from zyb.com account
 
 
    include "ZybImport.inc.php";
 
    
 
    $Zyb = new ZYBImport("ZYB_UserName","ZYB_KEY") ;            // Get your username and key from settings page in zyb.com
 
    
 
    $Contacts = $Zyb->GetZybContacts();
 
                                            
 
                                            
 
                                            for($nIndex=0;$nIndex<count($Contacts);$nIndex++){
 
        
 
                                                            print "<br>Full Name     : " . $Contacts[$nIndex]['Name'];        
 
                                                            print "<br>Phone Number: " . $Contacts[$nIndex]['Phone'];        
 
                                                            
 
                                                            
 
                             
 
                                             }    
 
                        
 
                        
 
                        exit;
 
?>
 
 |