<?php
 
 
/**
 
 * Danltn | http://danltn.com/
 
 * MSN: [email protected]
 
 * Email: [email protected]
 
 * Started: 19/6/2008 16:0 (UK) 
 
 * Tested: No
 
 * PHP 4/5: 5
 
 * No warranty is given to code used
 
 */
 
 
 
try {
 
    $wrapper = new PingFM_Wrapper;
 
    $wrapper->dev_api = 'DEVELOPER_API';
 
    $wrapper->user_api = 'USER_API';
 
    if ( $wrapper->act('post', array('post_method' => 'status', 'body' => 'is really bored')) ) echo 'You updated your status!';
 
}
 
catch ( exception $e ) {
 
    echo $e->getMessage();
 
}
 
 
/** Dead simple! **/
 
 
?>
 
 |