I had GROUP_CONCAT in a MySQL database, so I created a view where the row of the image array is located. there he is:

I use PHP CodeIgniter and I try to display these images on my page, but there are some problems: it displays only those images that are not in the array in the table row. here is my code to display:
<?php foreach ($get_hotels as $geth) { ?>
<td><img src="<?php echo base_url()."uploads/hotels/".trim(str_replace(",", " ", $geth->hotel_images));?>" width="73" height="53"></td>
<?php } ?>
So my question is how to display images in the same one <td>
as an array? any suggestions?
source
share