blob: 3f123303c6bce4ec4e578de62497563fccbd8866 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<h1 style="display: none;"><?= t("Photo Detail") ?></h1>
<div id="gExifData">
<table>
<tbody>
<? for ($i = 0; $i < count($details); $i++): ?>
<tr>
<td class="gEven">
<?= $details[$i]["caption"] ?>
</td>
<td class="gOdd">
<?= $details[$i]["value"] ?>
</td>
<? if (!empty($details[++$i])): ?>
<td class="gEven">
<?= $details[$i]["caption"] ?>
</td>
<td class="gOdd">
<?= $details[$i]["value"] ?>
</td>
<? else: ?>
<td class="gEven"></td><td class="gOdd"></td>
<? endif ?>
</td>
</tr>
<? endfor ?>
</tbody>
</table>
</div>
|