kdramatable.html.php 696 B

12345678910111213141516171819202122232425262728
  1. <table>
  2. <th>Title</th>
  3. <th>Date</th>
  4. <?php foreach ($kdrama as $k): ?>
  5. <tr>
  6. <td>
  7. <a href="/kdrama/view/<?= $k->special_id ?>"><?= $k->title ?></a>
  8. <?php if (isset($k->foreign_titles) || isset($k->alternative_titles)): ?>
  9. <span class="alt_titles">
  10. <?php if (isset($k->foreign_titles)): ?>
  11. <?= $k->foreign_titles[0] ?>
  12. <?php endif ?>
  13. <?php if (isset($k->alternative_titles)): ?>
  14. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  15. <?= $k->alternative_titles[0] ?>
  16. <?php endif ?>
  17. </span>
  18. <?php endif ?>
  19. </td>
  20. <td>
  21. <?php
  22. $network = array_values($k->networks->data());
  23. ?>
  24. <?= $network[0]['broadcast_period'] ?>
  25. </td>
  26. </tr>
  27. <?php endforeach ?>
  28. </table>