html
1//aa.html 2 3 4 5<!DOCTYPE html> 6<html lang="ja"> 7 <head> 8 <meta charset="utf-8"> 9 <title></title> 10 </head> 11 <body> 12 <form action="index1.php" method="post"> 13 <input type="text" name="text"> 14 <button type="submit" name="button">ボタン</button> 15 </form> 16 </body> 17</html> 18 19
php
1コード 2 3//index1.php 4 5<?php 6 7$text = $_REQUEST["text"]; 8 9echo $text; 10 11?> 12 13
aa.htmlからindex1.phpにリクエストを出して、 index1.phpの結果の値を 違うページでその結果をを表示させたいのですが、 レスポンスで値を返す など 調べても分からなかったのでアドバイス頂けると助かります。
java の
request.setAttribute("???", ???);
repuestオブジェクトのようなものはあるのでしょうか?
例がjavaですみません。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/11 07:34
2019/11/11 07:37
2019/11/11 07:47
2019/11/11 07:51
2019/11/11 07:52
2019/11/11 08:01