回答編集履歴
4
コード修正
test
CHANGED
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
<td>
|
24
24
|
|
25
|
-
<a href="<?php print($json->items[$i]
|
25
|
+
<a href="<?php print($json->items[$i]->path); ?>"><img src="<?php print($json->items[$i]->path); ?>"></a>
|
26
26
|
|
27
27
|
</td>
|
28
28
|
|
3
コード修正
test
CHANGED
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
<td>
|
24
24
|
|
25
|
-
<a href="<?php print($json->items[$i]
|
25
|
+
<a href="<?php print($json->items[$i]['path']); ?>"><img src="<?php print($json->items[$i]['path']); ?>"></a>
|
26
26
|
|
27
27
|
</td>
|
28
28
|
|
2
コード修正
test
CHANGED
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
<td>
|
24
24
|
|
25
|
-
<a href="<?php print($items[$i]->path); ?>"><img src="<?php print($items[$i]->path); ?>"></a>
|
25
|
+
<a href="<?php print($json->items[$i]->path); ?>"><img src="<?php print($json->items[$i]->path); ?>"></a>
|
26
26
|
|
27
27
|
</td>
|
28
28
|
|
1
コード修正
test
CHANGED
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
<td>
|
24
24
|
|
25
|
-
<a href="<?php print($item->path); ?>"><img src="<?php print($item->path); ?>"></a>
|
25
|
+
<a href="<?php print($items[$i]->path); ?>"><img src="<?php print($items[$i]->path); ?>"></a>
|
26
26
|
|
27
27
|
</td>
|
28
28
|
|