开发者

html form hidden variable not showing in php

开发者 https://www.devze.com 2023-03-30 08:07 出处:网络
I have a HTML form that submits to PHP. There is an onChange event on a drop down box that calls a JavaScript function which writes a hidden variable into the form. This additional hidden variable doe

I have a HTML form that submits to PHP. There is an onChange event on a drop down box that calls a JavaScript function which writes a hidden variable into the form. This additional hidden variable doesnt show up in PHP though, why is this?

So;

<script language="JavaScript">
function change() {
  document.getElementById("myDiv").innerHTML="<input type=\"hidden\" name=\"blah\" value=\"1\"/>";
  return;
}
</script>

<form method="post" action="test.php" />
<select name="cid" id="cid" onChange="change();">
<option value="lala">lala</option>
</select>
<div id="myDiv"></div>
</form>开发者_C百科;

PHP doesn't see $_POST['blah']?


A more logical solution anyway would be to just add the hidden field to your form, and set the value to 1 in the onChange function.


You must have been setup something wrong, it dose work fine when I test that. Are you sure you call the method before you submit the form ?


I can´t see you executing your change() function.

0

精彩评论

暂无评论...
验证码 换一张
取 消