15 lines
677 B
PHP
15 lines
677 B
PHP
<?php if (!empty($multi_file_data)) : ?>
|
|
<div class="form-group col-md-12">
|
|
<label>Select Files:</label>
|
|
<?php foreach ($multi_file_data as $file) : ?>
|
|
<div class="form-check">
|
|
|
|
<input type="checkbox" class="form-check-input multi_file_attachment" id="file_<?= $file['id'] ?>" name="selected_attachment_files[]" value="<?= $file['id'] ?>">
|
|
<label class="form-check-label" for="file_<?= $file['id'] ?>">
|
|
<?= htmlspecialchars($file['docs_name']) ?> - <?= htmlspecialchars($file['file_name']) ?>
|
|
</label>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
<?php endif; ?>
|