質問編集履歴
1
ソースコードの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -205,3 +205,83 @@
|
|
205
205
|
</table>
|
206
206
|
|
207
207
|
```
|
208
|
+
|
209
|
+
echoで出力したHTMLソース
|
210
|
+
|
211
|
+
```HTML
|
212
|
+
|
213
|
+
<td style="width:8%">
|
214
|
+
|
215
|
+
<input type ="text" name="workday" class="add" value="2020-01-11">
|
216
|
+
|
217
|
+
</td>
|
218
|
+
|
219
|
+
<td style="width:12%">
|
220
|
+
|
221
|
+
<input type ="text" name="workgroup" class="add" value="横ピロB">
|
222
|
+
|
223
|
+
</td>
|
224
|
+
|
225
|
+
<td style="width:18%">
|
226
|
+
|
227
|
+
<input type ="text" name="personal" class="add" value="村田・阿部・二岡・仁志・高橋(由)"></td>
|
228
|
+
|
229
|
+
<td style="width:18%">
|
230
|
+
|
231
|
+
<input type ="text" name="product" class="add" value="アスクル小粒キャンディ">
|
232
|
+
|
233
|
+
</td>
|
234
|
+
|
235
|
+
<td style="width:5%">
|
236
|
+
|
237
|
+
<input type ="text" name="createcnt" class="add2" value="400">
|
238
|
+
|
239
|
+
</td>
|
240
|
+
|
241
|
+
<td style="width:5%">
|
242
|
+
|
243
|
+
<input type ="text" name="unit" class="add2" value="kg">
|
244
|
+
|
245
|
+
</td>
|
246
|
+
|
247
|
+
<td style="width:8%">
|
248
|
+
|
249
|
+
<input type ="text" name="bestbydata" class="add" value="-">
|
250
|
+
|
251
|
+
</td>
|
252
|
+
|
253
|
+
<td style="width:18%">
|
254
|
+
|
255
|
+
<input type ="text" name="remarks" class="add" value="-">
|
256
|
+
|
257
|
+
</td>
|
258
|
+
|
259
|
+
<td style="width:4%">
|
260
|
+
|
261
|
+
<input type="button" class="add" value="更新" class="add" onclick="window.location.reload(true),submit()">
|
262
|
+
|
263
|
+
</td>
|
264
|
+
|
265
|
+
</form>
|
266
|
+
|
267
|
+
<form action="edit.php" method="post">
|
268
|
+
|
269
|
+
<input type="hidden" name="command" value="delete">
|
270
|
+
|
271
|
+
<td style="width:4%">
|
272
|
+
|
273
|
+
<input type="button" class="add" value="削除" onclick="window.location.reload(true),submit();">
|
274
|
+
|
275
|
+
</td>
|
276
|
+
|
277
|
+
</form>
|
278
|
+
|
279
|
+
</tr>
|
280
|
+
|
281
|
+
~
|
282
|
+
|
283
|
+
次の行へ~
|
284
|
+
|
285
|
+
コード
|
286
|
+
|
287
|
+
```
|