Waders On Sale
< ?php
/*
* THIS SOFTWARE IS PROVIDED AS-IS WITH NO WARRANTY, IMPLIED
* OR OTHERWISE.
*/
//
// Configure your AvantLink API authentication information
//
$affiliate_id = 709;
//
// Construct the full URL of your API request
//
$strUrl = 'http://www.avantlink.com/api.php';
$strUrl .= "?affiliate_id=$affiliate_id";
$strUrl .= "&module=ProductSearch";
$strUrl .= "&output=" . urlencode('html');
$strUrl .= "&website_id=4260";
$strUrl .= "&search_term=" . urlencode('waders');
$strUrl .= "&search_advanced_syntax=1";
$strUrl .= "&datafeed_ids=" . urlencode('80|99|687|90|126|120|711');
$strUrl .= "&search_on_sale_only=1";
$strUrl .= "&search_results_layout=" . urlencode('grid1');
$strUrl .= "&search_results_fields=" . urlencode('Merchant Name|Category Name|Product SKU|Product Name|Brand Name|Retail Price|Sale Price|Description|Large Image');
$strUrl .= "&search_results_sort_order=" . urlencode('Sale Price');
$strUrl .= "&search_results_options=" . urlencode('interleave');
$strUrl .= "&custom_tracking_code=" . urlencode('waders on sale');
//
// Make the actual API request
//
$strApiResponse = file_get_contents($strUrl);
//
// Output the API response along with your own HTML shell
//
$strHtml = <<
$strApiResponse
?>
Waders on sale at different stores on the internet. Click through any of the product names for more info.
$strApiResponse
Know of waders on sale elsewhere? Or have a question or comment? Post it below.
END;
echo $strHtml;
?>






