質問編集履歴

1

htmlを追記しました。

2019/01/21 03:41

投稿

yuugo
yuugo

スコア12

test CHANGED
File without changes
test CHANGED
@@ -55,3 +55,35 @@
55
55
 
56
56
 
57
57
  宜しくお願いします。
58
+
59
+
60
+
61
+ すみません、以下画像表示のhtml部です。
62
+
63
+ ```ここに <div id="maincontents"><!--maincontensエリアの開始-->
64
+
65
+ <div id="photo_img"><!--photo_imgエリアの開始-->
66
+
67
+ <?php if($photo = $photos->fetch()):?>
68
+
69
+ <h2><img src="photoimg/<?php print(htmlspecialchars($photo['photoimg'] , ENT_QUOTES)); ?>" width="1277" height="780" id="img" exif="true"></h2>
70
+
71
+ <?php endif; ?>
72
+
73
+ </div><!---photo_imgエリアの終了-->
74
+
75
+ </div>
76
+
77
+ <div id="share_list">
78
+
79
+ <ul>
80
+
81
+ <li><i class="share_icon far fa-heart fa-lg"></i></li>
82
+
83
+ <li><i class="share_icon far fa-comment-alt fa-lg"></i></li>
84
+
85
+ </ul>
86
+
87
+ </div>
88
+
89
+ ```