Welcome Guest, Not a member yet? Register   Sign In
Pownce Library
#1

[eluser]Cyb3rAssasin[/eluser]
Code:
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');

class Pownce {
    
    function get_pownce($data, $uid) {
        
        $target = "http://api.pownce.com/1.1/public_note_lists/from/".$data['username'].".xml?limit=1";
        
        $ch = curl_init();
        
        curl_setopt($ch, CURLOPT_URL, $target);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
        
        $getpownce = curl_exec($ch);
        
        $pownces = new SimpleXMLElement($getpownce);
        
        foreach ($pownces->note as $pownce) {
            $text = $pownce->body;
            $time = $pownce->display_since;
        }
        
        curl_close($ch);
        
        $presence = array("text"=>htmlspecialchars($text), "date"=>$time, "source"=>'<a href="http://pownce.com/'.$data['username'].'">Pownce</a>');
    
        return $presence;    
        
    }
    
}


?&gt;

Okay I have this pownce library.(I did not write it) I'm not sure how to get it to work, This is what I've tried but I know its not right.
Code:
$params = array('username'=>'theusernamehere');
$this->load->library('pownce',$params);
$data["pownce"] = $this->load->library('pownce',$params);
Can someone shed some light on this for me, or point me in the right direction? Thanks.


Messages In This Thread
Pownce Library - by El Forum - 03-22-2008, 03:08 PM
Pownce Library - by El Forum - 03-22-2008, 03:46 PM
Pownce Library - by El Forum - 03-23-2008, 11:26 AM
Pownce Library - by El Forum - 03-23-2008, 01:24 PM
Pownce Library - by El Forum - 03-23-2008, 07:15 PM



Theme © iAndrew 2016 - Forum software by © MyBB