回答編集履歴
4
コード修正
answer
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
<tr>
|
11
11
|
<?php endif; ?>
|
12
12
|
<td>
|
13
|
-
<a href="<?php print($json->items[$i]
|
13
|
+
<a href="<?php print($json->items[$i]->path); ?>"><img src="<?php print($json->items[$i]->path); ?>"></a>
|
14
14
|
</td>
|
15
15
|
<?php if ($i % 8 == 7 || $i == $len - 1): ?>
|
16
16
|
</tr>
|
3
コード修正
answer
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
<tr>
|
11
11
|
<?php endif; ?>
|
12
12
|
<td>
|
13
|
-
<a href="<?php print($json->items[$i]
|
13
|
+
<a href="<?php print($json->items[$i]['path']); ?>"><img src="<?php print($json->items[$i]['path']); ?>"></a>
|
14
14
|
</td>
|
15
15
|
<?php if ($i % 8 == 7 || $i == $len - 1): ?>
|
16
16
|
</tr>
|
2
コード修正
answer
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
<tr>
|
11
11
|
<?php endif; ?>
|
12
12
|
<td>
|
13
|
-
<a href="<?php print($items[$i]->path); ?>"><img src="<?php print($items[$i]->path); ?>"></a>
|
13
|
+
<a href="<?php print($json->items[$i]->path); ?>"><img src="<?php print($json->items[$i]->path); ?>"></a>
|
14
14
|
</td>
|
15
15
|
<?php if ($i % 8 == 7 || $i == $len - 1): ?>
|
16
16
|
</tr>
|
1
コード修正
answer
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
<tr>
|
11
11
|
<?php endif; ?>
|
12
12
|
<td>
|
13
|
-
<a href="<?php print($
|
13
|
+
<a href="<?php print($items[$i]->path); ?>"><img src="<?php print($items[$i]->path); ?>"></a>
|
14
14
|
</td>
|
15
15
|
<?php if ($i % 8 == 7 || $i == $len - 1): ?>
|
16
16
|
</tr>
|