質問編集履歴

1

言葉足らずで申し訳ございません。ソースコードを追記いたしました。

2020/04/07 09:10

投稿

rrr_s
rrr_s

スコア19

test CHANGED
File without changes
test CHANGED
@@ -25,6 +25,40 @@
25
25
  ②CSV出力フォーム<form>~</form>
26
26
 
27
27
   →①のユーザー入力値をもとに[CSV出力]ボタンを押下すると、PHP側で再度SQLが走り、結果がCSVでダウンロードされる
28
+
29
+
30
+
31
+ ```html
32
+
33
+ //検索フォーム
34
+
35
+ <form name="form" method=POST action="{{$SCRIPT_NAME}}">
36
+
37
+ <input type=hidden name=name value="検索">
38
+
39
+ //検索パラメータ
40
+
41
+ <input type="text" name="aaa" value="ユーザー入力値">
42
+
43
+     <input type="checkbox" name="bbb" id="ccc" value="ユーザー入力値">
44
+
45
+ </form>
46
+
47
+
48
+
49
+ //ダウンロードフォーム
50
+
51
+ <form name="form" method=POST action="{{$SCRIPT_NAME}}">
52
+
53
+ <input type=hidden name=name value="ダウンロード">
54
+
55
+ //ダウンロードパラメータ
56
+
57
+ </form>
58
+
59
+
60
+
61
+ ```
28
62
 
29
63
 
30
64