You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
|
|
<?php foreach ($feedback_list as $index => $feedback) {?>
|
|
|
|
<div class="feedback_content" rel="nofollow">
|
|
|
|
<strong><?php echo $feedback['title'] ?></strong>
|
|
|
|
<p class="feedback_rating"><img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://data.asiahighlights.com/pic/trustpilot-new-icon.png'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://data.chinahighlights.com/image/aboutus/feedback/five-star.png'; } ?>"></p>
|
|
|
|
<p style="height: auto;"><?php echo $feedback['content'] ?></p>
|
|
|
|
<a href="<?php echo $feedback['url'] ?>" target="_blank">More</a>
|
|
|
|
<div class="customer_name"><?php echo $feedback['customer'] ?>, <?php echo $feedback['createdOn'] ?></div>
|
|
|
|
</div>
|
|
|
|
<?php }?>
|
|
|
|
|
|
|
|
|