โค้ด
<?php
require_once('Prosperent_Api_new.php');
$prosperentApi = new Prosperent_Api(array(
'api_key' => $apiKey,
'query' => $trimmed,
'visitor_ip' => $_SERVER['REMOTE_ADDR'],
'channel_id' => 0,
'page' => 1,
'imageSize' => '250x250',
'sortPrice' => $sort,
'limit' => 1000,
));
$prosperentApi->set_filterBrand($brand);
$prosperentApi->set_filterMerchant($merchant);
$results = $prosperentApi->fetch();
foreach ($prosperentApi->getData() as $record)
{
?>
<div class="art-layout-cell layout-item-5" style="width:20%; float:left;" >
<h2><?=$record['keyword']?></h2>
<p style="text-align: center;"><img alt="" width="150" src="<?=$record['image_url']?>" height="150" class="art-preview-selected"><br></p>
<p style="text-align: center;"> <a href="<?=$record['keyword']?>" class="art-button prosp-pl-affrep318" style="font-size: 14px;">View details »</a> </p>
</div>
<?php
} ?>
จาก limit 1000 อ่ะคับ มันแสดงออกมาหมดเลย ถ้าเกิดอยากแบ่งหน้าให้มันแสดงอย่างล่ะ 25 จะต้องทำประมาณไหนอ่ะคับ
ขอบคุณคับ
