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/ch-feedback-list.php

28 lines
1.2 KiB
PHP

<div class="table-responsive">
<table>
<tbody>
<tr> <td>
<div class="feedback_logo">
<img alt="Tour Review" class="img-responsive"
src="https://data.chinahighlights.com/image/travelguide/best-china/trip-advisor-logp-bg-global-highlights.png">
<img src="https://data.chinahighlights.com/image/feedback/2022-CH-TA-certificate.jpg" class="img-responsive" style="margin: 0 auto;">
</div>
</td>
<?php foreach ($feedback_list as $index => $feedback) {?>
<td>
<div class="tour_feedback">
<div class="feedback_content">
<strong><?php echo $feedback['title'] ?></strong>
<p><?php echo $feedback['content'] ?></p>
<a href="<?php echo $feedback['url'] ?>" target="_blank">more</a></div>
<div class="customer_name"><?php echo $feedback['createdOn'] ?>, <?php echo $feedback['customer'] ?></div>
<img alt="" class="img-responsive" height="40" width="211" src="https://data.chinahighlights.com/image/aboutus/feedback/five-star.png" ></div>
</td>
<?php }?>
</tr>
</tbody>
</table>
</div>