You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

show-responders-list.part.php 402B

12345678910111213
  1. <?php if(is_array($recipients)): ?>
  2. <table class="table table-striped">
  3. <tbody>
  4. <?php foreach($recipients as $recipient): ?>
  5. <tr>
  6. <td><?php echo ucwords(strtolower($recipient['surname'])); ?></td>
  7. <td><?php echo ucwords(strtolower($recipient['name'])); ?></td>
  8. <td><?php echo $recipient['ms_list']; ?></td>
  9. </tr>
  10. <?php endforeach; ?>
  11. </tbody>
  12. </table>
  13. <?php endif; ?>