Parse the Results
<?php
foreach ($hits->Details as $hit) {
    
printf('<p style="clear:both"><img src="%s" alt="%s" 
            align="left" /><a href="%s">%s</a><br/>%s</p>'
,
            
$hit->ImageUrlSmall
            
htmlspecialchars($hit->ProductName),
            
$this->Urlhtmlspecialchars($hit->ProductName),
            
htmlspecialchars($hit->OurPrice)
          );
}
?>