CodeIgniter_Gforms/application/views/forms/myforms.php

28 lines
972 B
PHP
Raw Normal View History

2024-07-14 21:04:04 +00:00
<div style="margin: 0 10%;">
<h1>My Forms</h1>
<table>
<thead>
<tr>
<th>Form Title</th>
<th>Published</th>
2024-07-14 21:04:04 +00:00
<th>Created At</th>
</tr>
</thead>
<tbody>
<?php if (!empty($forms)) : ?>
<?php foreach ($forms as $form) : ?>
<tr>
<td><a href="<?= base_url() ?>forms/preview/<?=$form->form_id?> "><?= htmlspecialchars($form->title, ENT_QUOTES, 'UTF-8') ?></a></td>
<td><?= ($form->is_published == 0)?'No':'Yes'?></td>
2024-07-14 21:04:04 +00:00
<td><?php echo date('Y-m-d H:i:s', strtotime($form->created_at)); ?></td>
</tr>
<?php endforeach; ?>
<?php else : ?>
<tr>
<td colspan="2">No forms found.</td>
</tr>
<?php endif; ?>
</tbody>
</table>
</div>