blob: 370ff1aabcf080fc2047fcb2a00b569140052827 (
plain)
1
2
3
4
|
<tr><th>img</th><th>Name</th><th>Episodes</th><th>Type</th><th>Score</th></tr>
<?php foreach($content as $item): ?>
<tr><td>"image"</td><td><a href="/anime/view/<?= $item->special_id ?>"><?= $item->title ?></a></td> <td><?= $item->episode_count ?></td><td><?= $item->view_type ?></td><td><?= $item->mal_score ?></td></tr>
<?php endforeach; ?>
|