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.
| 12345678910111213 |
- <?php if(is_array($recipients)): ?>
- <table class="table table-striped">
- <tbody>
- <?php foreach($recipients as $recipient): ?>
- <tr>
- <td><?php echo ucwords(strtolower($recipient['surname'])); ?></td>
- <td><?php echo ucwords(strtolower($recipient['name'])); ?></td>
- <td><?php echo $recipient['ms_list']; ?></td>
- </tr>
- <?php endforeach; ?>
- </tbody>
- </table>
- <?php endif; ?>
|