| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- $this->styles($this->html->style('pagination'));
- ?>
- <?= var_dump($this->request()->controller); ?>
- <h3> Anime </h3>
- <hr>
- <table>
- <th>Title</th>
- <th>Date</th>
- <th>Type</th>
- <?php if(count($anime) > 0): ?>
- <?php foreach ($anime as $item): ?>
- <tr>
- <td>
- <a href="/anime/view/<?= $item->special_id ?>"><?= $item->title ?></a>
- </td>
- <td>
- <?= $item->aired ?>
- </td>
- <td>
- <?= $item->view_type ?>
- </td>
- </tr>
- <?php endforeach ?>
- </table>
- <div style = "float:right">
- <?= $this->html->link("More", array('controller' => 'search',
- 'action' => 'anime')); ?>
- </div>
- <?php else: ?>
- <p> No results found</p>
- <?php endif; ?>
- <h3> Manga </h3>
- <hr>
- <table>
- <th>Title</th>
- <th>Date</th>
- <th>Type</th>
- <?php if(count($manga) > 0): ?>
- <?php foreach ($manga as $item): ?>
- <tr>
- <td>
- <a href="/anime/view/<?= $item->special_id ?>"><?= $item->title ?></a>
- </td>
- <td>
- <?= $item->aired ?>
- </td>
- <td>
- <?= $item->view_type ?>
- </td>
- </tr>
- <?php endforeach ?>
- </table>
- <div style = "float:right">
- <?= $this->html->link("More", array('controller' => 'search',
- 'action' => 'anime')); ?>
- </div>
- <?php else: ?>
- <p> No entries found </p>
- <?php endif; ?>
- <h3> K Drama </h3>
- <hr>
- <table>
- <th>Title</th>
- <th>Date</th>
- <th>Type</th>
- <?php if(count($kdrama) > 0): ?>
- <?php foreach ($kdrama as $item): ?>
- <tr>
- <td>
- <a href="/anime/view/<?= $item->special_id ?>"><?= $item->title ?></a>
- </td>
- <td>
- <?= $item->aired ?>
- </td>
- <td>
- <?= $item->view_type ?>
- </td>
- </tr>
- <?php endforeach ?>
- </table>
- <div style = "float:right">
- <?= $this->html->link("More", array('controller' => 'search',
- 'action' => 'anime')); ?>
- </div>
- <?php else: ?>
- <p> No Entries found </p>
- <?php endif; ?>
|