<slide>
<title>Amazon_Item</title>

<example title="Amazon_Item" type="php" fontsize='1.4em'><![CDATA[
<?php
class Amazon_item {

  function Amazon_item($ProductName, $ImageUrlSmall, $Url, $OurPrice) {
      $this->ProductName = $ProductName;
      $this->OurPrice = $OurPrice;
      $this->url = $Url;
      $this->ImageUrlSmall = $ImageUrlSmall;
  }

  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)
          );
  } 
}
?>
]]>
</example>

</slide>