回答編集履歴

1

追記

2018/12/10 08:23

投稿

mayoi_maimai
mayoi_maimai

スコア1583

test CHANGED
@@ -9,3 +9,23 @@
9
9
  <input type="hidden" name="message" value="<?php echo $messag; ?>">
10
10
 
11
11
  ```
12
+
13
+
14
+
15
+ 追記
16
+
17
+ ```PHP
18
+
19
+ <input type="hidden" name="company" value="<?php echo $postData['company']; ?>">
20
+
21
+ <input type="hidden" name="address" value="<?php echo $postData['address']; ?>">
22
+
23
+ <input type="hidden" name="name" value="<?php echo $postData['name']; ?>">
24
+
25
+ <input type="hidden" name="email" value="<?php echo $postData['email']; ?>">
26
+
27
+ <input type="hidden" name="tel" value="<?php echo $postData['tel']; ?>">
28
+
29
+ <input type="hidden" name="message" value="<?php echo $postData['message']; ?>">
30
+
31
+ ```