<html> <head> <title>ThaiCreate.Com Tutorial</title> </head> <body> <? error_reporting(E_ALL); // turn on all errors, warnings and notices for easier debugging $apiKey = '78b0db8a-0ee1-4939-a2f9-d3cd95ec0fcc'; // Replace with your own apiKey $trackingid = '7000610';//trackingID $keyword = 'laptops'; // keyword $categoryId = '9007'; //categoryId $numItems = '10'; $numOffers = '10'; $endpoint = 'http://publisher.api.shopping.com/publisher/3.0/rest/GeneralSearch'; // URL to call // Construct the FindItems call $apicall = "$endpoint?apiKey=$apiKey" . "&trackingId=$trackingid" . "&categoryId=$categoryId" . "&numItems=$numItems" . "&showProductOffers=true" . "&numOffersPerProduct=$numOffers" . "&showProductReviews=true" . "&numReviewsPerProduct=3"; $resp = simplexml_load_file($apicall); $Num_Rows = intval($resp->categories->category->items['returnedItemCount']); $Per_Page = 4; // Per Page $Page = $_GET['Page']; if(!$_GET['Page']) { $Page=1; } $Prev_Page = $Page-1; $Next_Page = $Page+1; $Page_Start = (($Per_Page*$Page)-$Per_Page); if($Num_Rows<=$Per_Page) { $Num_Pages =1; } else if(($Num_Rows % $Per_Page)==0) { $Num_Pages =($Num_Rows/$Per_Page) ; } else { $Num_Pages =($Num_Rows/$Per_Page)+1; $Num_Pages = (int)$Num_Pages; } $Page_End = $Per_Page * $Page; IF ($Page_End > $Num_Rows) { $Page_End = $Num_Rows; } echo"<table border=\"0\" cellspacing=\"1\" cellpadding=\"1\"><tr>"; $intRows = 0; for($i=$Page_Start;$i<$Page_End;$i++) { echo"<td>"; $intRows++; $name =($resp->categories->category->items->product[$i]->name); $images = ($resp->categories->category->items->product[$i]->images->image[0]->sourceURL); $n =$i+1; echo"<center>$n<img src=\"$images\"><br> $name<br> </center>"; echo"</td>"; if(($intRows)%2==0) { echo"</tr>"; } } echo"</tr></table>"; ?> <br> Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page : <? if($Prev_Page) { echo" <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'><< Back</a> "; } for($i=1; $i<=$Num_Pages; $i++){ if($i != $Page) { echo"[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a> ]"; } else { echo"<b> $i </b>"; } } if($Page!=$Num_Pages) { echo" <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page'>Next>></a> "; } ?> </body> </html>
$Page = $_GET['Page']; if(!$_GET['Page']) { $Page=1; }
$Page = isset($_GET['Page']) ? $_GET['Page'] : 1;
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง