Ben ızgara dizide şey olduğunda onun bir hataya neden beri bir try / catch kod tüm bu bloğunu çevreleyen istiyorum. Nedir bu yapmak için en iyi yolu nedir?
<?php foreach ($grid->result() as $idx => $row): ?> <?php if ($idx % 3 == 2): ?>
<div class="img_grid_3"><img src="/images/thumb/<?= $row->images_name; ?>" /></div>
<?php else: ?>
<div class="img_grid"><img src="/images/thumb/<?= $row->images_name; ?>" /></div>
<?php endif; ?>
<?php endforeach; ?>
Teşekkürler