3v4l.org

run code in 300+ PHP versions simultaneously
<? // Below is encoded script to prevent accidentaly editing. This script is virus free and no malicious code, you can check it with virus scan. // You might ask me to get decoded version of this script, or you can decoded it your self using base64 decoded tools. // If you're not a geek enough, trust me, just go banked with this tools without worried. // C#7 http://stoodio2.com ?> <? function amazonEncode($text) { $encodedText = ""; $j = strlen($text); for($i=0;$i<$j;$i++) { $c = substr($text,$i,1); if (!preg_match("/[A-Za-z0-9\-_.~]/",$c)) { $encodedText .= sprintf("%%%02X",ord($c)); } else { $encodedText .= $c; } } return $encodedText; } function amazonSign($url,$secretAccessKey) { // 0. Append Timestamp parameter $url .= "&Timestamp=".gmdate("Y-m-d\TH:i:s\Z"); // 1a. Sort the UTF-8 query string components by parameter name $urlParts = parse_url($url); parse_str($urlParts["query"],$queryVars); ksort($queryVars); // 1b. URL encode the parameter name and values $encodedVars = array(); foreach($queryVars as $key => $value) { $encodedVars[amazonEncode($key)] = amazonEncode($value); } // 1c. 1d. Reconstruct encoded query $encodedQueryVars = array(); foreach($encodedVars as $key => $value) { $encodedQueryVars[] = $key."=".$value; } $encodedQuery = implode("&",$encodedQueryVars); // 2. Create the string to sign $stringToSign = "GET"; $stringToSign .= "\n".strtolower($urlParts["host"]); $stringToSign .= "\n".$urlParts["path"]; $stringToSign .= "\n".$encodedQuery; // 3. Calculate an RFC 2104-compliant HMAC with the string you just created, // your Secret Access Key as the key, and SHA256 as the hash algorithm. if (function_exists("hash_hmac")) { $hmac = hash_hmac("sha256",$stringToSign,$secretAccessKey,TRUE); } elseif(function_exists("mhash")) { $hmac = mhash(MHASH_SHA256,$stringToSign,$secretAccessKey); } else { die("No hash function available!"); } // 4. Convert the resulting value to base64 $hmacBase64 = base64_encode($hmac); // 5. Use the resulting value as the value of the Signature request parameter // (URL encoded as per step 1b) $url .= "&Signature=".amazonEncode($hmacBase64); return $url; }?> <? if ($opr=='Lookup') { $url = "http://webservices.amazon.com/onca/xml?Service=AWSECommerceService"; $url .= "&Version=2011-08-01"; $url .= "&Operation=ItemLookup"; $url .= "&AWSAccessKeyId=".$amazonAWSAccessKeyId; $url .= "&AssociateTag=".$amazonAssociateTag; $url .= "&ResponseGroup=Large"; $url .= "&IncludeReviewsSummary=True"; $url .= "&ItemId=".$asin; $url = amazonSign($url,$amazonSecretAccessKey); $xml = simplexml_load_file($url); $item = $xml->Items->Item; }?> <? $item_asin = $item[0]->ASIN; $item_url = $item[0]->DetailPageURL; $item_image1 = $item[0]->MediumImage->URL; $item_image2 = $item[0]->LargeImage->URL; $item_title = $item[0]->ItemAttributes->Title; $item_price = $item[0]->OfferSummary->LowestNewPrice->FormattedPrice; if ($item_price=='') { $item_price = $item[0]->ItemAttributes->ListPrice->FormattedPrice; } $item_list = $item[0]->ItemAttributes->ListPrice->FormattedPrice; if ($item_list=='') { $item_list = 'only '; } else { $item_list = '<font color="red"><del>'.$item_list.'</del></font>'; } $item_save = $item[0]->Offers->Offer->OfferListing->AmountSaved->FormattedPrice; $item_model = $item[0]->ItemAttributes->Model; $item_brand = $item[0]->ItemAttributes->Brand; $item_binding = $item[0]->ItemAttributes->Binding; $item_color = $item[0]->ItemAttributes->Color; $item_unit = $item[0]->OfferSummary->TotalNew; $item_warranty= $item[0]->ItemAttributes->Warranty; $item_height = $item[0]->ItemAttributes->ItemDimensions->Height; $item_length = $item[0]->ItemAttributes->ItemDimensions->Length; $item_weight = $item[0]->ItemAttributes->ItemDimensions->Weight; $item_width = $item[0]->ItemAttributes->ItemDimensions->Width; if ($item_height!=0) { $item_height = $item_height/100; } else { $item_height = 0; } if ($item_length!=0) { $item_length = $item_length/100; } else { $item_length = 0; } if ($item_weight!=0) { $item_weight = $item_weight/100; } else { $item_weight = 0; } if ($item_width!=0) { $item_width = $item_width/100; } else { $item_width = 0; } //featured $item_feat = $item[0]->ItemAttributes->Feature[0]; $item_feat1 = $item[0]->ItemAttributes->Feature[1]; $item_feat2 = $item[0]->ItemAttributes->Feature[2]; $item_feat3 = $item[0]->ItemAttributes->Feature[3]; $item_feat4 = $item[0]->ItemAttributes->Feature[4]; $item_avail = $item[0]->Offers->Offer->OfferListing->Availability; $item_cust = $item[0]->CustomerReviews->IFrameURL; $item_edit = $item[0]->EditorialReviews->EditorialReview->Content; $item_edit1 = $item[0]->EditorialReviews->EditorialReview[1]->Content; $item_sim = $item[0]->SimilarProducts->SimilarProduct[0]->ASIN; $item_sim1 = $item[0]->SimilarProducts->SimilarProduct[1]->ASIN;?> <? $judul = 'Only '.$item_price.' from '.$item_brand; if ($item_color='') { $konten = $item_brand. ' offer the best <strong> '.$item_title.'</strong> with '.strtolower($item_color).' color or pattern options.'; } else { $konten = $item_brand. ' offer the best <strong> '.$item_title.'</strong>.'; } if ($item_unit>1) { $konten1 = 'This awesome product currently <font color="green"><strong>'.$item_unit.'</strong></font> unit available, you can buy it now for '.$item_list.' <strong>'.$item_price.'</strong> and '.strtolower($item_avail); } else { $konten1 = 'This awesome product currently in stocks, you can get this '.$item_binding.' now for '.$item_list.' <strong>'.$item_price.'</strong>.'; } $gambar = $item_image2; if ($item_warranty!='') { $garansi = $item_brand.' give '.strtolower($item_warranty); } else { $garansi = 'Currently no specific warranty for this products'; } $feat = $item_feat.'<br>'.$item_feat1.'<br>'.$item_feat2.'<br>'.$item_feat3.'<br>'.$item_feat4; if ($item_edit!='') { $keterangan = substr(strip_tags($item_edit), 0, 600); } else { $keterangan = 'Currently no descriptions for this product and will be added soon.'; } $review = $item_cust; $beli = $item_url; $harga = $item_price.' Buy NOW!'; ?> <? // similiar products if ($item_sim) { $url = "http://webservices.amazon.com/onca/xml?Service=AWSECommerceService"; $url .= "&Version=2011-08-01"; $url .= "&Operation=ItemLookup"; $url .= "&AWSAccessKeyId=".$amazonAWSAccessKeyId; $url .= "&AssociateTag=".$amazonAssociateTag; $url .= "&ResponseGroup=Medium"; $url .= "&ItemId=".$item_sim.','.$item_sim1; $url = amazonSign($url,$amazonSecretAccessKey); $xml = simplexml_load_file($url); $item = $xml->Items->Item; }?> <? // similiar detail #1 $sim_asin = $item[0]->ASIN; $sim_gambar = $item[0]->LargeImage->URL; $sim_harga = $item[0]->OfferSummary->LowestNewPrice->FormattedPrice; if ($sim_harga =='') { $sim_harga = $item[0]->ItemAttributes->ListPrice->FormattedPrice; } $sim_judul = 'Only '.$sim_harga.' '.$item[0]->ItemAttributes->Title; // similiar detail #2 $sim_asin1 = $item[1]->ASIN; $sim_gambar1 = $item[1]->LargeImage->URL; $sim_harga1 = $item[1]->OfferSummary->LowestNewPrice->FormattedPrice; if ($sim_harga1 =='') { $sim_harga1 = $item[1]->ItemAttributes->ListPrice->FormattedPrice; } $sim_judul1 = 'Only '.$sim_harga1.' '.$item[1]->ItemAttributes->Title;?> <?php function curPageURL() { $pageURL = 'http'; if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";} $pageURL .= "://"; if ($_SERVER["SERVER_PORT"] != "80") { $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"]; } else { $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; } return $pageURL; } ?>
Output for 7.2.29 - 7.2.33, 7.3.16 - 7.3.31, 7.4.0 - 7.4.32, 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
<? // Below is encoded script to prevent accidentaly editing. This script is virus free and no malicious code, you can check it with virus scan. // You might ask me to get decoded version of this script, or you can decoded it your self using base64 decoded tools. // If you're not a geek enough, trust me, just go banked with this tools without worried. // C#7 http://stoodio2.com ?> <? function amazonEncode($text) { $encodedText = ""; $j = strlen($text); for($i=0;$i<$j;$i++) { $c = substr($text,$i,1); if (!preg_match("/[A-Za-z0-9\-_.~]/",$c)) { $encodedText .= sprintf("%%%02X",ord($c)); } else { $encodedText .= $c; } } return $encodedText; } function amazonSign($url,$secretAccessKey) { // 0. Append Timestamp parameter $url .= "&Timestamp=".gmdate("Y-m-d\TH:i:s\Z"); // 1a. Sort the UTF-8 query string components by parameter name $urlParts = parse_url($url); parse_str($urlParts["query"],$queryVars); ksort($queryVars); // 1b. URL encode the parameter name and values $encodedVars = array(); foreach($queryVars as $key => $value) { $encodedVars[amazonEncode($key)] = amazonEncode($value); } // 1c. 1d. Reconstruct encoded query $encodedQueryVars = array(); foreach($encodedVars as $key => $value) { $encodedQueryVars[] = $key."=".$value; } $encodedQuery = implode("&",$encodedQueryVars); // 2. Create the string to sign $stringToSign = "GET"; $stringToSign .= "\n".strtolower($urlParts["host"]); $stringToSign .= "\n".$urlParts["path"]; $stringToSign .= "\n".$encodedQuery; // 3. Calculate an RFC 2104-compliant HMAC with the string you just created, // your Secret Access Key as the key, and SHA256 as the hash algorithm. if (function_exists("hash_hmac")) { $hmac = hash_hmac("sha256",$stringToSign,$secretAccessKey,TRUE); } elseif(function_exists("mhash")) { $hmac = mhash(MHASH_SHA256,$stringToSign,$secretAccessKey); } else { die("No hash function available!"); } // 4. Convert the resulting value to base64 $hmacBase64 = base64_encode($hmac); // 5. Use the resulting value as the value of the Signature request parameter // (URL encoded as per step 1b) $url .= "&Signature=".amazonEncode($hmacBase64); return $url; }?> <? if ($opr=='Lookup') { $url = "http://webservices.amazon.com/onca/xml?Service=AWSECommerceService"; $url .= "&Version=2011-08-01"; $url .= "&Operation=ItemLookup"; $url .= "&AWSAccessKeyId=".$amazonAWSAccessKeyId; $url .= "&AssociateTag=".$amazonAssociateTag; $url .= "&ResponseGroup=Large"; $url .= "&IncludeReviewsSummary=True"; $url .= "&ItemId=".$asin; $url = amazonSign($url,$amazonSecretAccessKey); $xml = simplexml_load_file($url); $item = $xml->Items->Item; }?> <? $item_asin = $item[0]->ASIN; $item_url = $item[0]->DetailPageURL; $item_image1 = $item[0]->MediumImage->URL; $item_image2 = $item[0]->LargeImage->URL; $item_title = $item[0]->ItemAttributes->Title; $item_price = $item[0]->OfferSummary->LowestNewPrice->FormattedPrice; if ($item_price=='') { $item_price = $item[0]->ItemAttributes->ListPrice->FormattedPrice; } $item_list = $item[0]->ItemAttributes->ListPrice->FormattedPrice; if ($item_list=='') { $item_list = 'only '; } else { $item_list = '<font color="red"><del>'.$item_list.'</del></font>'; } $item_save = $item[0]->Offers->Offer->OfferListing->AmountSaved->FormattedPrice; $item_model = $item[0]->ItemAttributes->Model; $item_brand = $item[0]->ItemAttributes->Brand; $item_binding = $item[0]->ItemAttributes->Binding; $item_color = $item[0]->ItemAttributes->Color; $item_unit = $item[0]->OfferSummary->TotalNew; $item_warranty= $item[0]->ItemAttributes->Warranty; $item_height = $item[0]->ItemAttributes->ItemDimensions->Height; $item_length = $item[0]->ItemAttributes->ItemDimensions->Length; $item_weight = $item[0]->ItemAttributes->ItemDimensions->Weight; $item_width = $item[0]->ItemAttributes->ItemDimensions->Width; if ($item_height!=0) { $item_height = $item_height/100; } else { $item_height = 0; } if ($item_length!=0) { $item_length = $item_length/100; } else { $item_length = 0; } if ($item_weight!=0) { $item_weight = $item_weight/100; } else { $item_weight = 0; } if ($item_width!=0) { $item_width = $item_width/100; } else { $item_width = 0; } //featured $item_feat = $item[0]->ItemAttributes->Feature[0]; $item_feat1 = $item[0]->ItemAttributes->Feature[1]; $item_feat2 = $item[0]->ItemAttributes->Feature[2]; $item_feat3 = $item[0]->ItemAttributes->Feature[3]; $item_feat4 = $item[0]->ItemAttributes->Feature[4]; $item_avail = $item[0]->Offers->Offer->OfferListing->Availability; $item_cust = $item[0]->CustomerReviews->IFrameURL; $item_edit = $item[0]->EditorialReviews->EditorialReview->Content; $item_edit1 = $item[0]->EditorialReviews->EditorialReview[1]->Content; $item_sim = $item[0]->SimilarProducts->SimilarProduct[0]->ASIN; $item_sim1 = $item[0]->SimilarProducts->SimilarProduct[1]->ASIN;?> <? $judul = 'Only '.$item_price.' from '.$item_brand; if ($item_color='') { $konten = $item_brand. ' offer the best <strong> '.$item_title.'</strong> with '.strtolower($item_color).' color or pattern options.'; } else { $konten = $item_brand. ' offer the best <strong> '.$item_title.'</strong>.'; } if ($item_unit>1) { $konten1 = 'This awesome product currently <font color="green"><strong>'.$item_unit.'</strong></font> unit available, you can buy it now for '.$item_list.' <strong>'.$item_price.'</strong> and '.strtolower($item_avail); } else { $konten1 = 'This awesome product currently in stocks, you can get this '.$item_binding.' now for '.$item_list.' <strong>'.$item_price.'</strong>.'; } $gambar = $item_image2; if ($item_warranty!='') { $garansi = $item_brand.' give '.strtolower($item_warranty); } else { $garansi = 'Currently no specific warranty for this products'; } $feat = $item_feat.'<br>'.$item_feat1.'<br>'.$item_feat2.'<br>'.$item_feat3.'<br>'.$item_feat4; if ($item_edit!='') { $keterangan = substr(strip_tags($item_edit), 0, 600); } else { $keterangan = 'Currently no descriptions for this product and will be added soon.'; } $review = $item_cust; $beli = $item_url; $harga = $item_price.' Buy NOW!'; ?> <? // similiar products if ($item_sim) { $url = "http://webservices.amazon.com/onca/xml?Service=AWSECommerceService"; $url .= "&Version=2011-08-01"; $url .= "&Operation=ItemLookup"; $url .= "&AWSAccessKeyId=".$amazonAWSAccessKeyId; $url .= "&AssociateTag=".$amazonAssociateTag; $url .= "&ResponseGroup=Medium"; $url .= "&ItemId=".$item_sim.','.$item_sim1; $url = amazonSign($url,$amazonSecretAccessKey); $xml = simplexml_load_file($url); $item = $xml->Items->Item; }?> <? // similiar detail #1 $sim_asin = $item[0]->ASIN; $sim_gambar = $item[0]->LargeImage->URL; $sim_harga = $item[0]->OfferSummary->LowestNewPrice->FormattedPrice; if ($sim_harga =='') { $sim_harga = $item[0]->ItemAttributes->ListPrice->FormattedPrice; } $sim_judul = 'Only '.$sim_harga.' '.$item[0]->ItemAttributes->Title; // similiar detail #2 $sim_asin1 = $item[1]->ASIN; $sim_gambar1 = $item[1]->LargeImage->URL; $sim_harga1 = $item[1]->OfferSummary->LowestNewPrice->FormattedPrice; if ($sim_harga1 =='') { $sim_harga1 = $item[1]->ItemAttributes->ListPrice->FormattedPrice; } $sim_judul1 = 'Only '.$sim_harga1.' '.$item[1]->ItemAttributes->Title;?>
Output for 8.0.13
Warning: Undefined variable $opr in /in/0g00d on line 18 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "ASIN" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "DetailPageURL" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "MediumImage" on null in /in/0g00d on line 19 Warning: Attempt to read property "URL" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "LargeImage" on null in /in/0g00d on line 19 Warning: Attempt to read property "URL" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 19 Warning: Attempt to read property "Title" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "OfferSummary" on null in /in/0g00d on line 19 Warning: Attempt to read property "LowestNewPrice" on null in /in/0g00d on line 19 Warning: Attempt to read property "FormattedPrice" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 19 Warning: Attempt to read property "ListPrice" on null in /in/0g00d on line 19 Warning: Attempt to read property "FormattedPrice" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 19 Warning: Attempt to read property "ListPrice" on null in /in/0g00d on line 19 Warning: Attempt to read property "FormattedPrice" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "Offers" on null in /in/0g00d on line 19 Warning: Attempt to read property "Offer" on null in /in/0g00d on line 19 Warning: Attempt to read property "OfferListing" on null in /in/0g00d on line 19 Warning: Attempt to read property "AmountSaved" on null in /in/0g00d on line 19 Warning: Attempt to read property "FormattedPrice" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 19 Warning: Attempt to read property "Model" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 19 Warning: Attempt to read property "Brand" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 19 Warning: Attempt to read property "Binding" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 19 Warning: Attempt to read property "Color" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "OfferSummary" on null in /in/0g00d on line 19 Warning: Attempt to read property "TotalNew" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 19 Warning: Attempt to read property "Warranty" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 19 Warning: Attempt to read property "ItemDimensions" on null in /in/0g00d on line 19 Warning: Attempt to read property "Height" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 19 Warning: Attempt to read property "ItemDimensions" on null in /in/0g00d on line 19 Warning: Attempt to read property "Length" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 19 Warning: Attempt to read property "ItemDimensions" on null in /in/0g00d on line 19 Warning: Attempt to read property "Weight" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 19 Warning: Trying to access array offset on value of type null in /in/0g00d on line 19 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 19 Warning: Attempt to read property "ItemDimensions" on null in /in/0g00d on line 19 Warning: Attempt to read property "Width" on null in /in/0g00d on line 19 Warning: Undefined variable $item in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 20 Warning: Attempt to read property "Feature" on null in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Undefined variable $item in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 20 Warning: Attempt to read property "Feature" on null in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Undefined variable $item in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 20 Warning: Attempt to read property "Feature" on null in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Undefined variable $item in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 20 Warning: Attempt to read property "Feature" on null in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Undefined variable $item in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 20 Warning: Attempt to read property "Feature" on null in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Undefined variable $item in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Attempt to read property "Offers" on null in /in/0g00d on line 20 Warning: Attempt to read property "Offer" on null in /in/0g00d on line 20 Warning: Attempt to read property "OfferListing" on null in /in/0g00d on line 20 Warning: Attempt to read property "Availability" on null in /in/0g00d on line 20 Warning: Undefined variable $item in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Attempt to read property "CustomerReviews" on null in /in/0g00d on line 20 Warning: Attempt to read property "IFrameURL" on null in /in/0g00d on line 20 Warning: Undefined variable $item in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Attempt to read property "EditorialReviews" on null in /in/0g00d on line 20 Warning: Attempt to read property "EditorialReview" on null in /in/0g00d on line 20 Warning: Attempt to read property "Content" on null in /in/0g00d on line 20 Warning: Undefined variable $item in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Attempt to read property "EditorialReviews" on null in /in/0g00d on line 20 Warning: Attempt to read property "EditorialReview" on null in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Attempt to read property "Content" on null in /in/0g00d on line 20 Warning: Undefined variable $item in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Attempt to read property "SimilarProducts" on null in /in/0g00d on line 20 Warning: Attempt to read property "SimilarProduct" on null in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Attempt to read property "ASIN" on null in /in/0g00d on line 20 Warning: Undefined variable $item in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Attempt to read property "SimilarProducts" on null in /in/0g00d on line 20 Warning: Attempt to read property "SimilarProduct" on null in /in/0g00d on line 20 Warning: Trying to access array offset on value of type null in /in/0g00d on line 20 Warning: Attempt to read property "ASIN" on null in /in/0g00d on line 20 Warning: Undefined variable $item in /in/0g00d on line 26 Warning: Trying to access array offset on value of type null in /in/0g00d on line 26 Warning: Attempt to read property "ASIN" on null in /in/0g00d on line 26 Warning: Undefined variable $item in /in/0g00d on line 26 Warning: Trying to access array offset on value of type null in /in/0g00d on line 26 Warning: Attempt to read property "LargeImage" on null in /in/0g00d on line 26 Warning: Attempt to read property "URL" on null in /in/0g00d on line 26 Warning: Undefined variable $item in /in/0g00d on line 26 Warning: Trying to access array offset on value of type null in /in/0g00d on line 26 Warning: Attempt to read property "OfferSummary" on null in /in/0g00d on line 26 Warning: Attempt to read property "LowestNewPrice" on null in /in/0g00d on line 26 Warning: Attempt to read property "FormattedPrice" on null in /in/0g00d on line 26 Warning: Undefined variable $item in /in/0g00d on line 26 Warning: Trying to access array offset on value of type null in /in/0g00d on line 26 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 26 Warning: Attempt to read property "ListPrice" on null in /in/0g00d on line 26 Warning: Attempt to read property "FormattedPrice" on null in /in/0g00d on line 26 Warning: Undefined variable $item in /in/0g00d on line 26 Warning: Trying to access array offset on value of type null in /in/0g00d on line 26 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 26 Warning: Attempt to read property "Title" on null in /in/0g00d on line 26 Warning: Undefined variable $item in /in/0g00d on line 27 Warning: Trying to access array offset on value of type null in /in/0g00d on line 27 Warning: Attempt to read property "ASIN" on null in /in/0g00d on line 27 Warning: Undefined variable $item in /in/0g00d on line 27 Warning: Trying to access array offset on value of type null in /in/0g00d on line 27 Warning: Attempt to read property "LargeImage" on null in /in/0g00d on line 27 Warning: Attempt to read property "URL" on null in /in/0g00d on line 27 Warning: Undefined variable $item in /in/0g00d on line 27 Warning: Trying to access array offset on value of type null in /in/0g00d on line 27 Warning: Attempt to read property "OfferSummary" on null in /in/0g00d on line 27 Warning: Attempt to read property "LowestNewPrice" on null in /in/0g00d on line 27 Warning: Attempt to read property "FormattedPrice" on null in /in/0g00d on line 27 Warning: Undefined variable $item in /in/0g00d on line 27 Warning: Trying to access array offset on value of type null in /in/0g00d on line 27 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 27 Warning: Attempt to read property "ListPrice" on null in /in/0g00d on line 27 Warning: Attempt to read property "FormattedPrice" on null in /in/0g00d on line 27 Warning: Undefined variable $item in /in/0g00d on line 28 Warning: Trying to access array offset on value of type null in /in/0g00d on line 28 Warning: Attempt to read property "ItemAttributes" on null in /in/0g00d on line 28 Warning: Attempt to read property "Title" on null in /in/0g00d on line 28
Output for 7.4.33
Notice: Undefined variable: opr in /in/0g00d on line 18 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'ASIN' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'DetailPageURL' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'MediumImage' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'URL' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'LargeImage' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'URL' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Title' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'OfferSummary' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'LowestNewPrice' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'FormattedPrice' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'ListPrice' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'FormattedPrice' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'ListPrice' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'FormattedPrice' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'Offers' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Offer' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'OfferListing' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'AmountSaved' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'FormattedPrice' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Model' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Brand' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Binding' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Color' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'OfferSummary' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'TotalNew' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Warranty' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'ItemDimensions' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Height' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'ItemDimensions' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Length' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'ItemDimensions' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Weight' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to access array offset on value of type null in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'ItemDimensions' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Width' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Feature' of non-object in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Feature' of non-object in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Feature' of non-object in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Feature' of non-object in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Feature' of non-object in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Trying to get property 'Offers' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Offer' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'OfferListing' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Availability' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Trying to get property 'CustomerReviews' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'IFrameURL' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Trying to get property 'EditorialReviews' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'EditorialReview' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Content' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Trying to get property 'EditorialReviews' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'EditorialReview' of non-object in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Trying to get property 'Content' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Trying to get property 'SimilarProducts' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'SimilarProduct' of non-object in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Trying to get property 'ASIN' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Trying to get property 'SimilarProducts' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'SimilarProduct' of non-object in /in/0g00d on line 20 Notice: Trying to access array offset on value of type null in /in/0g00d on line 20 Notice: Trying to get property 'ASIN' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 26 Notice: Trying to access array offset on value of type null in /in/0g00d on line 26 Notice: Trying to get property 'ASIN' of non-object in /in/0g00d on line 26 Notice: Undefined variable: item in /in/0g00d on line 26 Notice: Trying to access array offset on value of type null in /in/0g00d on line 26 Notice: Trying to get property 'LargeImage' of non-object in /in/0g00d on line 26 Notice: Trying to get property 'URL' of non-object in /in/0g00d on line 26 Notice: Undefined variable: item in /in/0g00d on line 26 Notice: Trying to access array offset on value of type null in /in/0g00d on line 26 Notice: Trying to get property 'OfferSummary' of non-object in /in/0g00d on line 26 Notice: Trying to get property 'LowestNewPrice' of non-object in /in/0g00d on line 26 Notice: Trying to get property 'FormattedPrice' of non-object in /in/0g00d on line 26 Notice: Undefined variable: item in /in/0g00d on line 26 Notice: Trying to access array offset on value of type null in /in/0g00d on line 26 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 26 Notice: Trying to get property 'ListPrice' of non-object in /in/0g00d on line 26 Notice: Trying to get property 'FormattedPrice' of non-object in /in/0g00d on line 26 Notice: Undefined variable: item in /in/0g00d on line 26 Notice: Trying to access array offset on value of type null in /in/0g00d on line 26 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 26 Notice: Trying to get property 'Title' of non-object in /in/0g00d on line 26 Notice: Undefined variable: item in /in/0g00d on line 27 Notice: Trying to access array offset on value of type null in /in/0g00d on line 27 Notice: Trying to get property 'ASIN' of non-object in /in/0g00d on line 27 Notice: Undefined variable: item in /in/0g00d on line 27 Notice: Trying to access array offset on value of type null in /in/0g00d on line 27 Notice: Trying to get property 'LargeImage' of non-object in /in/0g00d on line 27 Notice: Trying to get property 'URL' of non-object in /in/0g00d on line 27 Notice: Undefined variable: item in /in/0g00d on line 27 Notice: Trying to access array offset on value of type null in /in/0g00d on line 27 Notice: Trying to get property 'OfferSummary' of non-object in /in/0g00d on line 27 Notice: Trying to get property 'LowestNewPrice' of non-object in /in/0g00d on line 27 Notice: Trying to get property 'FormattedPrice' of non-object in /in/0g00d on line 27 Notice: Undefined variable: item in /in/0g00d on line 27 Notice: Trying to access array offset on value of type null in /in/0g00d on line 27 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 27 Notice: Trying to get property 'ListPrice' of non-object in /in/0g00d on line 27 Notice: Trying to get property 'FormattedPrice' of non-object in /in/0g00d on line 27 Notice: Undefined variable: item in /in/0g00d on line 28 Notice: Trying to access array offset on value of type null in /in/0g00d on line 28 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 28 Notice: Trying to get property 'Title' of non-object in /in/0g00d on line 28
Output for 7.3.32 - 7.3.33
Output for 7.2.0 - 7.2.13, 7.3.0 - 7.3.1
Notice: Undefined variable: opr in /in/0g00d on line 18 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'ASIN' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'DetailPageURL' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'MediumImage' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'URL' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'LargeImage' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'URL' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Title' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'OfferSummary' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'LowestNewPrice' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'FormattedPrice' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'ListPrice' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'FormattedPrice' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'ListPrice' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'FormattedPrice' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'Offers' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Offer' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'OfferListing' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'AmountSaved' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'FormattedPrice' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Model' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Brand' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Binding' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Color' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'OfferSummary' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'TotalNew' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Warranty' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'ItemDimensions' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Height' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'ItemDimensions' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Length' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'ItemDimensions' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Weight' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'ItemDimensions' of non-object in /in/0g00d on line 19 Notice: Trying to get property 'Width' of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Feature' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Feature' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Feature' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Feature' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Feature' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property 'Offers' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Offer' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'OfferListing' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Availability' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property 'CustomerReviews' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'IFrameURL' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property 'EditorialReviews' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'EditorialReview' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Content' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property 'EditorialReviews' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'EditorialReview' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'Content' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property 'SimilarProducts' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'SimilarProduct' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'ASIN' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property 'SimilarProducts' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'SimilarProduct' of non-object in /in/0g00d on line 20 Notice: Trying to get property 'ASIN' of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 26 Notice: Trying to get property 'ASIN' of non-object in /in/0g00d on line 26 Notice: Undefined variable: item in /in/0g00d on line 26 Notice: Trying to get property 'LargeImage' of non-object in /in/0g00d on line 26 Notice: Trying to get property 'URL' of non-object in /in/0g00d on line 26 Notice: Undefined variable: item in /in/0g00d on line 26 Notice: Trying to get property 'OfferSummary' of non-object in /in/0g00d on line 26 Notice: Trying to get property 'LowestNewPrice' of non-object in /in/0g00d on line 26 Notice: Trying to get property 'FormattedPrice' of non-object in /in/0g00d on line 26 Notice: Undefined variable: item in /in/0g00d on line 26 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 26 Notice: Trying to get property 'ListPrice' of non-object in /in/0g00d on line 26 Notice: Trying to get property 'FormattedPrice' of non-object in /in/0g00d on line 26 Notice: Undefined variable: item in /in/0g00d on line 26 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 26 Notice: Trying to get property 'Title' of non-object in /in/0g00d on line 26 Notice: Undefined variable: item in /in/0g00d on line 27 Notice: Trying to get property 'ASIN' of non-object in /in/0g00d on line 27 Notice: Undefined variable: item in /in/0g00d on line 27 Notice: Trying to get property 'LargeImage' of non-object in /in/0g00d on line 27 Notice: Trying to get property 'URL' of non-object in /in/0g00d on line 27 Notice: Undefined variable: item in /in/0g00d on line 27 Notice: Trying to get property 'OfferSummary' of non-object in /in/0g00d on line 27 Notice: Trying to get property 'LowestNewPrice' of non-object in /in/0g00d on line 27 Notice: Trying to get property 'FormattedPrice' of non-object in /in/0g00d on line 27 Notice: Undefined variable: item in /in/0g00d on line 27 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 27 Notice: Trying to get property 'ListPrice' of non-object in /in/0g00d on line 27 Notice: Trying to get property 'FormattedPrice' of non-object in /in/0g00d on line 27 Notice: Undefined variable: item in /in/0g00d on line 28 Notice: Trying to get property 'ItemAttributes' of non-object in /in/0g00d on line 28 Notice: Trying to get property 'Title' of non-object in /in/0g00d on line 28
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.38, 7.0.0 - 7.0.33, 7.1.0 - 7.1.25
Notice: Undefined variable: opr in /in/0g00d on line 18 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Trying to get property of non-object in /in/0g00d on line 19 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Trying to get property of non-object in /in/0g00d on line 20 Notice: Undefined variable: item in /in/0g00d on line 26 Notice: Trying to get property of non-object in /in/0g00d on line 26 Notice: Undefined variable: item in /in/0g00d on line 26 Notice: Trying to get property of non-object in /in/0g00d on line 26 Notice: Trying to get property of non-object in /in/0g00d on line 26 Notice: Undefined variable: item in /in/0g00d on line 26 Notice: Trying to get property of non-object in /in/0g00d on line 26 Notice: Trying to get property of non-object in /in/0g00d on line 26 Notice: Trying to get property of non-object in /in/0g00d on line 26 Notice: Undefined variable: item in /in/0g00d on line 26 Notice: Trying to get property of non-object in /in/0g00d on line 26 Notice: Trying to get property of non-object in /in/0g00d on line 26 Notice: Trying to get property of non-object in /in/0g00d on line 26 Notice: Undefined variable: item in /in/0g00d on line 26 Notice: Trying to get property of non-object in /in/0g00d on line 26 Notice: Trying to get property of non-object in /in/0g00d on line 26 Notice: Undefined variable: item in /in/0g00d on line 27 Notice: Trying to get property of non-object in /in/0g00d on line 27 Notice: Undefined variable: item in /in/0g00d on line 27 Notice: Trying to get property of non-object in /in/0g00d on line 27 Notice: Trying to get property of non-object in /in/0g00d on line 27 Notice: Undefined variable: item in /in/0g00d on line 27 Notice: Trying to get property of non-object in /in/0g00d on line 27 Notice: Trying to get property of non-object in /in/0g00d on line 27 Notice: Trying to get property of non-object in /in/0g00d on line 27 Notice: Undefined variable: item in /in/0g00d on line 27 Notice: Trying to get property of non-object in /in/0g00d on line 27 Notice: Trying to get property of non-object in /in/0g00d on line 27 Notice: Trying to get property of non-object in /in/0g00d on line 27 Notice: Undefined variable: item in /in/0g00d on line 28 Notice: Trying to get property of non-object in /in/0g00d on line 28 Notice: Trying to get property of non-object in /in/0g00d on line 28

preferences:
317.69 ms | 422 KiB | 340 Q