|
Posted by Jerry Stuckle on 01/21/08 13:24
Atwiawomo wrote:
> Hi
>
> I'm playing with a bit of php code to generate a list of amazon
> associate products in an iframe:
>
> <?php
> $keywords = array(
> "dslr", "lens", "canon", "nikon","nikkor", "sigma", "flash", "tripod",
> "camera", "sandisk", "speedlite"
> );
> $search = $keywords[rand(0,count($keywords)-1)];
> if ($country == "GB")
> {
> print "<iframe src=\"http://rcm-uk.amazon.co.uk/e/cm?
> t=ASSOCIATECODE&o=2&p=13&l=st1";
> print "&mode=electronics-uk&search=$search&=1&fc1=<1=&lc1=&bg1=&f=ifr
> \" marginwidth=\"0\" marginheight=\"0\" width=\"468\" height=\"60\"
> border=\"0\" frameborder=\"0\" style=\"border:none;\" scrolling=\"no
> \"></iframe>";
> }
> ?>
>
> The section "&mode=electronics-uk" will bring up results from the
> Amazon UK category "Electronics".
> I don't want to limit the category just to "Electronics". I want the
> results to come from all the categories, so from:
> "kitchen-uk baby-uk books-uk electronics-uk apparel-uk" and so
> on.
>
> Apart from selecting the mode (category) randomly as i do with the
> keyword above, is there a way I can set the mode to all? and show a
> few products across different categories?
>
> Many thanks if anyone can help
>
> Mr M
>
Well, let's see. You're trying to figure out how to do something with
Amazon. You need to figure out how to do it on their site.
Might I suggest the people to as are - Amazon?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
[Back to original message]
|