kdramatable.html.php 709 B

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