我有这个表格
<form method="post" action="file.php">
<input type="button" name="one" value="1">
</input>
<input type="button" name="two" value="2">
</input>
<input type="submit">
</input>
</form>
我如何获得此INPUT的值并在php页面中显示此值?我试过这种方式但它不起作用。我怎么能这样做?
$_POST[nameOfInput]
答案 0 :(得分:0)
您无法发送按钮的值。使用无线电字段,例如:
<input type="radio" name="choice" value="1" />
<input type="radio" name="choice" value="2" />
或者您也可以使用下拉菜单:
<select name="choice">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
</select>
然后在PHP中:
echo $_POST['choice']; // possible results: NULL/1/2