いつも大変お世話になっております。
javascriptで値をpostしてphpで受け取りたいのですが、うまくpost出来ません。ついでにphpのエラーも出ます。
function postform()はwebから拾ってきた物を改変したもので、余り理解が深まっていません。
何方かお分かりになる方、よろしくお願い致します。
送り側
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>T&E合同会社 就労継続支援A型事業所 楽(ラック)</title> <style type="text/css"> // ~ 略 ~ </style> <script language="javascript" type="text/javascript"> function checkStr(){ // ~ 略 ~ } function checkMail(){ // ~ 略 ~ } function check_kuhaku(){ var str1 = document.getElementById("userid").value; var str2 = document.getElementById("password").value; if((!str1)||(!str2)){ alert("必須項目に空欄があります。"); return false; }else{ page_jump(); return false(); } } function page_jump(){ var str1 = document.getElementById("userid").value; var str2 = document.getElementById("password").value; postform('userid',str1); postform('password',str2); window.location.href="customer_registration.php"; return false; } function postform(name,value) { var form = document.createElement('form'); var request = document.createElement('input'); form.method = 'POST'; form.action = 'customer_registoration.php'; request.type = 'hidden'; request.id = name; request.name = name; request.value = value; form.appendChild(request); document.body.appendChild(form); form.submit(); } </script> </head> <body> <div align="center"> <img src="ラックロゴ.png"></br> <p></p> <form method="post"> <div class="s14">ログインID</div> <input type="text" id="userid" name ="userid" size="25" onchange="checkMail()"/> <div class="s14">パスワード</div> <input type="password" id="password" name ="password" size="25" onchange="checkStr()"/> </form> </div> </br> <div align="center"><p></p> <a style="text-decoration:none;" onClick="check_kuhaku()"> <button class="button" type="submit">ログイン</button></a> </br> <a href="menber_registration.html" style="text-decoration:none;"> <button class="button">新規登録</button></a> </div> </body> </html>
受け側
<?php if (isset($_POST['userid'])){ print "POST_userid:".$_POST['userid']."<br/>"; }else{ print("$_POST[userid]の値がありません"); } if (isset($_POST['password'])){ print "POST_password:".$_POST['password']."<br>"; }else{ print("$_POST[password]の値がありません"); } // ~ 略 ~
実行結果
Notice: Undefined variable: _POST[userid]の値がありません in C:\xampp\htdocs\LUCK\customer_registration.php on line 44
Notice: Undefined variable: _POST[password]の値がありません in C:\xampp\htdocs\LUCK\customer_registration.php on line 49
回答2件
あなたの回答
tips
プレビュー