質問編集履歴

4

初心者です

2020/09/05 04:42

投稿

SanRoku
SanRoku

スコア4

test CHANGED
File without changes
test CHANGED
@@ -14,12 +14,16 @@
14
14
 
15
15
  出力された文字全体に枠が作られてしまう
16
16
 
17
+
18
+
17
19
  ![イメージ説明](0836421c63fe53fc1d3e35ce8a7ba789.png)
18
20
 
19
21
 
20
22
 
21
23
  予定
22
24
 
25
+
26
+
23
27
  ![イメージ説明](bc6e78fdd18a08c30f1068da0027d245.png)
24
28
 
25
29
 

3

マークダウンのcode外に出しました。

2020/09/05 04:42

投稿

SanRoku
SanRoku

スコア4

test CHANGED
File without changes
test CHANGED
@@ -10,288 +10,288 @@
10
10
 
11
11
 
12
12
 
13
+
14
+
15
+ 出力された文字全体に枠が作られてしまう
16
+
17
+ ![イメージ説明](0836421c63fe53fc1d3e35ce8a7ba789.png)
18
+
19
+
20
+
21
+ 予定
22
+
23
+ ![イメージ説明](bc6e78fdd18a08c30f1068da0027d245.png)
24
+
25
+
26
+
27
+
28
+
29
+ ### 該当のソースコード
30
+
31
+
32
+
33
+ ```ここに言語名を入力
34
+
35
+ <!DOCTYPE html>
36
+
37
+ <html>
38
+
39
+ <head>
40
+
41
+ <meta charset="utf-8">
42
+
43
+ <title>ant</title>
44
+
45
+ <link rel="stylesheet" href="ant.css">
46
+
47
+ </head>
48
+
49
+ <body>
50
+
51
+ <div class="header">
52
+
53
+ <h1>ant</h1>
54
+
55
+ </div>
56
+
57
+
58
+
59
+ <div class="main">
60
+
61
+ <table border="1"align="center">
62
+
63
+ <tr>
64
+
65
+ <th><form action="ant.php" method="get">
66
+
67
+ <li class="comment">
68
+
69
+ <input type="text" name="comment" class="comments">
70
+
71
+ </li>
72
+
73
+ </th>
74
+
75
+ </tr>
76
+
77
+ <tr>
78
+
79
+ <td><li class="name">
80
+
81
+ <input type="text" name="choice" class="choice">
82
+
83
+
84
+
85
+ </td>
86
+
87
+ </tr>
88
+
89
+ <tr>
90
+
91
+ <td>
92
+
93
+ <input type="submit" name="button" value="書き込む" class="button">
94
+
95
+ </li>
96
+
97
+ </td>
98
+
99
+ </tr>
100
+
101
+ </table>
102
+
103
+ </form>
104
+
105
+ <?php
106
+
107
+ $comment = $_GET['comment'];
108
+
109
+ $choice = $_GET['choice'];
110
+
111
+ // ファイルポインタをオープン
112
+
113
+ $handle = fopen("test.txt", "a");
114
+
115
+ // ファイルへ書き込み
116
+
117
+ fwrite($handle, $comment."\n");
118
+
119
+ fwrite($handle, $choice."\n");
120
+
121
+
122
+
123
+ // ファイルポインタをクローズ
124
+
125
+ fclose($handle);
126
+
127
+ // ファイルポインタをオープン
128
+
129
+ $handle = fopen("test.txt", "r");
130
+
131
+ ?>
132
+
133
+ <div class="a">
134
+
135
+ <?php
136
+
137
+ // ファイル内容を出力
138
+
139
+ while ($line = fgets($handle)) {
140
+
141
+ echo $line. '<br>';
142
+
143
+ }
144
+
145
+ ?>
146
+
147
+ </div>
148
+
149
+ <?Php
150
+
151
+ // ファイルポインタをクローズ
152
+
153
+ fclose($handle);
154
+
155
+ ?>
156
+
157
+ </div>
158
+
159
+ </body>
160
+
161
+ </html>
162
+
13
163
  ```
14
164
 
15
- 出力された文字全体に枠が作られてしまう
16
-
17
- ![イメージ説明](140bb34ea408501519d83d372ea19b58.png)
18
-
19
-
20
-
21
- 予定
165
+ css
22
-
23
- ![イメージ説明](b5e852ebda3994238efbaaa4b2340eeb.png)
24
166
 
25
167
  ```
26
168
 
27
169
 
28
170
 
29
- ### 該当のソースコード
30
-
31
-
32
-
33
- ```ここに言語名を入力
34
-
35
- <!DOCTYPE html>
36
-
37
- <html>
38
-
39
- <head>
40
-
41
- <meta charset="utf-8">
42
-
43
- <title>ant</title>
44
-
45
- <link rel="stylesheet" href="ant.css">
46
-
47
- </head>
48
-
49
- <body>
50
-
51
- <div class="header">
52
-
53
- <h1>ant</h1>
54
-
55
- </div>
56
-
57
-
58
-
59
- <div class="main">
60
-
61
- <table border="1"align="center">
62
-
63
- <tr>
64
-
65
- <th><form action="ant.php" method="get">
66
-
67
- <li class="comment">
68
-
69
- <input type="text" name="comment" class="comments">
70
-
71
- </li>
72
-
73
- </th>
74
-
75
- </tr>
76
-
77
- <tr>
78
-
79
- <td><li class="name">
80
-
81
- <input type="text" name="choice" class="choice">
82
-
83
-
84
-
85
- </td>
86
-
87
- </tr>
88
-
89
- <tr>
90
-
91
- <td>
92
-
93
- <input type="submit" name="button" value="書き込む" class="button">
94
-
95
- </li>
96
-
97
- </td>
98
-
99
- </tr>
100
-
101
- </table>
102
-
103
- </form>
104
-
105
- <?php
106
-
107
- $comment = $_GET['comment'];
108
-
109
- $choice = $_GET['choice'];
110
-
111
- // ファイルポインタをオープン
112
-
113
- $handle = fopen("test.txt", "a");
114
-
115
- // ファイルへ書き込み
116
-
117
- fwrite($handle, $comment."\n");
118
-
119
- fwrite($handle, $choice."\n");
120
-
121
-
122
-
123
- // ファイルポインタをクローズ
124
-
125
- fclose($handle);
126
-
127
- // ファイルポインタをオープン
128
-
129
- $handle = fopen("test.txt", "r");
130
-
131
- ?>
132
-
133
- <div class="a">
134
-
135
- <?php
136
-
137
- // ファイル内容を出力
138
-
139
- while ($line = fgets($handle)) {
140
-
141
- echo $line. '<br>';
142
-
143
- }
144
-
145
- ?>
146
-
147
- </div>
148
-
149
- <?Php
150
-
151
- // ファイルポインタをクローズ
152
-
153
- fclose($handle);
154
-
155
- ?>
156
-
157
- </div>
158
-
159
- </body>
160
-
161
- </html>
171
+ body {
172
+
173
+ font-family: "Avenir Next";
174
+
175
+ }
176
+
177
+
178
+
179
+
180
+
181
+ .header {
182
+
183
+ background-color: #F4A460;
184
+
185
+ color: #ffffff;
186
+
187
+ height: 90px;
188
+
189
+ text-align:center;
190
+
191
+ }
192
+
193
+
194
+
195
+ .header-logo {
196
+
197
+ float: left;
198
+
199
+ font-size: 36px;
200
+
201
+ /* 上下のpaddingを20px、左右のpaddingを40pxにしてください */
202
+
203
+ padding:20px 40px;
204
+
205
+
206
+
207
+ }
208
+
209
+
210
+
211
+ .main {
212
+
213
+ background-color: #white;
214
+
215
+ height: 600px;
216
+
217
+ text-align:center;
218
+
219
+ }
220
+
221
+
222
+
223
+ .footer {
224
+
225
+ background-color: #F4A460;
226
+
227
+ height: 270px;
228
+
229
+ }
230
+
231
+
232
+
233
+ li {
234
+
235
+ list-style: none;
236
+
237
+ }
238
+
239
+ table th,table td {
240
+
241
+ padding: 20px;
242
+
243
+ background: #fff5e5;
244
+
245
+ }
246
+
247
+
248
+
249
+ table {
250
+
251
+ border-collapse: collapse;
252
+
253
+ margin-top: 20px;
254
+
255
+ width:1300px;
256
+
257
+ }
258
+
259
+
260
+
261
+ .choice,.comments {
262
+
263
+ text-align:center;
264
+
265
+ width: 1000px;
266
+
267
+ height: 50px;
268
+
269
+ border-radius:20px;
270
+
271
+ box-shadow: none;
272
+
273
+ padding: 2px 8px;
274
+
275
+ border-color:black;
276
+
277
+ }
278
+
279
+
280
+
281
+ .button {
282
+
283
+ margin-right:20px;
284
+
285
+ background-color: green;
286
+
287
+ }
288
+
289
+ .a {
290
+
291
+ border: 2px solid #000000;
292
+
293
+ margin: 10px;
294
+
295
+ }
162
296
 
163
297
  ```
164
-
165
- css
166
-
167
- ```
168
-
169
-
170
-
171
- body {
172
-
173
- font-family: "Avenir Next";
174
-
175
- }
176
-
177
-
178
-
179
-
180
-
181
- .header {
182
-
183
- background-color: #F4A460;
184
-
185
- color: #ffffff;
186
-
187
- height: 90px;
188
-
189
- text-align:center;
190
-
191
- }
192
-
193
-
194
-
195
- .header-logo {
196
-
197
- float: left;
198
-
199
- font-size: 36px;
200
-
201
- /* 上下のpaddingを20px、左右のpaddingを40pxにしてください */
202
-
203
- padding:20px 40px;
204
-
205
-
206
-
207
- }
208
-
209
-
210
-
211
- .main {
212
-
213
- background-color: #white;
214
-
215
- height: 600px;
216
-
217
- text-align:center;
218
-
219
- }
220
-
221
-
222
-
223
- .footer {
224
-
225
- background-color: #F4A460;
226
-
227
- height: 270px;
228
-
229
- }
230
-
231
-
232
-
233
- li {
234
-
235
- list-style: none;
236
-
237
- }
238
-
239
- table th,table td {
240
-
241
- padding: 20px;
242
-
243
- background: #fff5e5;
244
-
245
- }
246
-
247
-
248
-
249
- table {
250
-
251
- border-collapse: collapse;
252
-
253
- margin-top: 20px;
254
-
255
- width:1300px;
256
-
257
- }
258
-
259
-
260
-
261
- .choice,.comments {
262
-
263
- text-align:center;
264
-
265
- width: 1000px;
266
-
267
- height: 50px;
268
-
269
- border-radius:20px;
270
-
271
- box-shadow: none;
272
-
273
- padding: 2px 8px;
274
-
275
- border-color:black;
276
-
277
- }
278
-
279
-
280
-
281
- .button {
282
-
283
- margin-right:20px;
284
-
285
- background-color: green;
286
-
287
- }
288
-
289
- .a {
290
-
291
- border: 2px solid #000000;
292
-
293
- margin: 10px;
294
-
295
- }
296
-
297
- ```

2

イメージ図を更新しました

2020/09/05 04:38

投稿

SanRoku
SanRoku

スコア4

test CHANGED
File without changes
test CHANGED
@@ -20,7 +20,7 @@
20
20
 
21
21
  予定
22
22
 
23
- ![イメージ説明](f864a8a94afe333e7a092ff07dade9f3.png)
23
+ ![イメージ説明](b5e852ebda3994238efbaaa4b2340eeb.png)
24
24
 
25
25
  ```
26
26
 

1

cssファイルとphpファイルをわけました。 予定のイメージ図を貼りました。

2020/09/05 04:00

投稿

SanRoku
SanRoku

スコア4

test CHANGED
File without changes
test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
 
5
- 出力に枠を分けたい
5
+ 出力($comment+$choice)ごとに枠を分けたい
6
6
 
7
7
 
8
8
 
@@ -14,7 +14,13 @@
14
14
 
15
15
  出力された文字全体に枠が作られてしまう
16
16
 
17
- ![イメージ説明](123d22fb7b4703abd8a441639c74ba4d.png)
17
+ ![イメージ説明](140bb34ea408501519d83d372ea19b58.png)
18
+
19
+
20
+
21
+ 予定
22
+
23
+ ![イメージ説明](f864a8a94afe333e7a092ff07dade9f3.png)
18
24
 
19
25
  ```
20
26
 
@@ -154,10 +160,12 @@
154
160
 
155
161
  </html>
156
162
 
157
-
163
+ ```
158
164
 
159
165
  css
160
166
 
167
+ ```
168
+
161
169
 
162
170
 
163
171
  body {