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.
information-system/application/views/mobile_first/jh-feedback-30-list.php

14 lines
1.2 KiB
PHP

<?php foreach ($feedback_list as $index => $feedback) {?>
<div class="feedback_content">
<div class="review_name"><?php echo $feedback['customer'] ?></div>
<div class="review_nationality"><?php echo $feedback['nationality'] ?></div>
<img src="<?php if (strpos($feedback['url'], 'trustpilot.com') == true) { echo 'https://images.japanhighlights.com/allpicture/2024/04/eba8a46e43514b55bb4e1dd15d9b5712_cut_211x40_241.jpg'; } else if (strpos($feedback['url'], 'tripadvisor.com') == true) { echo 'https://images.chinahighlights.com/allpicture/2024/12/c81b67573a2d40d6922e95b33aeaf03d_cut_80x14_241_1733323252.png'; } ?>" alt="tour rating">
<strong><?php echo $feedback['title'] ?></strong>
<p style="height: auto;"><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank" rel="nofollow">More</a>
<div class="customer_name">
<strong>Date of Experience:</strong>: <?php echo $feedback['entranceDate'] ?>
</div>
</div>
<?php }?>