Filzhut.net Filzhut.net amazon_functions for PHP (Version 0.9)
Making the work with Amazon.com™ Web Services Version 1.0 much easier

amazon_create_teaserlist

Generates a short teaser-list as an HTML-table.

amazon_create_teaserlist(array xmlresult [, int noofitems [, int link [, int align] [, int title]]])

This function returns a short teaserlist-table which you can use to link to amazon as well as to a script that contains detailed information on the product. Before you run this function you first have to run a search function like amazon_search(). The array you receive with this function is the xmlresult you need to run amazon_create_teaserlist(). Optional parameters are the noofitems which will be replied (1-10, 5 is default), the align of the table (right, left or center) and a short title. With the parameter link you can define a URL as a link for each item. To improve the use of this function in cooperation with other scripts, the flag "&ASIN=" will be added and will contain the ASIN of the selected product. If you leave this field blank, there will be a directly link to amazon™.

Example 1. Returns a teaser-table with books by "Tom Clancy":

$Author="Tom Clancy";
$Data=amazon_search_author($Author);
$HTMLTable=amazon_create_teaserlist($Data);
echo $HTMLTable;

Will return:

Red Rabbit Red Rabbit
by Tom Clancy
Our Price: $20.27
The Sum of All Fears The Sum of All Fears
by Tom Clancy
Our Price: $7.99
Tom Clancy's Op-Center: Mission of Honor Tom Clancy's Op-Center: Mission of Honor
by Jeff Rovin
Our Price: $7.99
Executive Orders Executive Orders
by Tom Clancy
Our Price: $7.99
Rainbow Six Rainbow Six
by Tom Clancy
Our Price: $8.50

Example 2. Returns a teaser-table with books by "Tom Clancy" and the title "Books by Tom Clancy":

$Author="Tom Clancy";
$Data=amazon_search_author($Author);
$HTMLTable=amazon_create_teaserlist($Data,5,"","left","Books by Tom Clancy");
echo $HTMLTable;

Will return:

Books by Tom Clancy
Red Rabbit Red Rabbit
by Tom Clancy
Our Price: $20.27
The Sum of All Fears The Sum of All Fears
by Tom Clancy
Our Price: $7.99
Tom Clancy's Op-Center: Mission of Honor Tom Clancy's Op-Center: Mission of Honor
by Jeff Rovin
Our Price: $7.99
Executive Orders Executive Orders
by Tom Clancy
Our Price: $7.99
Rainbow Six Rainbow Six
by Tom Clancy
Our Price: $8.50


© by Filzhut.net, Daniel Filzhut 2002