<?php
class Amazon_item {
// attributes and character data fields we want
var $ProductName = '' ;
var $OurPrice = '';
var $url = '';
var $ImageUrlSmall = '';
// same display() as before!
function display() {
printf('<p style="clear:both"><img src="%s" alt="%s"
align="left" /><a href="%s">%s</a><br/>%s</p>',
$this->ImageUrlSmall,
htmlspecialchars($this->ProductName),
$this->url, htmlspecialchars($this->ProductName),
htmlspecialchars($this->OurPrice)
);
}
}
?>