Thanks in advance!

The goal is to display a list of items (websites) sorted by most votes.
I've got this (from here):
<?php $items = ThumbsUp::items('[quote]')->open(TRUE)->orderby('votes_pct_up desc')->limit(3)->get() ?>

This would result in:
PHP Code: 
array (
  
=> 
  array (
    
'id' => 653,
    
'name' => '[quote] scandic',
    
'closed' => false,
    
'date' => 1325620171,
    
'votes_up' => 76,
    
'votes_down' => 36,
    
'votes_pct_up' => 67.8571,
    
'votes_pct_down' => 32.1429,
    
'votes_balance' => 40,
    
'votes_total' => 112,
  ),
  
=> 
  array (
    
'id' => 654,
    
'name' => '[quote] mozunk',
    
'closed' => false,
    
'date' => 1325620171,
    
'votes_up' => 75,
    
'votes_down' => 39,
    
'votes_pct_up' => 65.7895,
    
'votes_pct_down' => 34.2105,
    
'votes_balance' => 36,
    
'votes_total' => 114,
  ),
  
=> 
  array (
    
'id' => 655,
    
'name' => '[quote] clarklab',
    
'closed' => false,
    
'date' => 1325620171,
    
'votes_up' => 58,
    
'votes_down' => 33,
    
'votes_pct_up' => 63.7363,
    
'votes_pct_down' => 36.2637,
    
'votes_balance' => 25,
    
'votes_total' => 91,
  ),

I can't figure out how to get this to display on a webpage..
Reference page: http://tpbmirrors.org/dev.php
AndroidApps Reviewed by AndroidApps on . [PHP] Need help to loop true the results Thanks in advance! The goal is to display a list of items (websites) sorted by most votes. I've got this (from here): <?php $items = ThumbsUp::items('')->open(TRUE)->orderby('votes_pct_up desc')->limit(3)->get() ?> This would result in: array ( 0 => Rating: 5