我在php中创建一个按钮,想要在点击时调用带参数的php:
echo '<form method="get" action="./ash.php?q=Y" >';
echo '<button type="submit" >QUERY</button>';
echo '</form>';
当我点击按钮时,确实调用了ash.php,但q参数在此过程中已被“遗忘”。 怎么会这样?
答案 0 :(得分:3)
echo '<form method="get" action="./ash.php" >';
echo '<input type="hidden" name="q" value="Y" />';
echo '<button type="submit" >QUERY</button>';
echo '</form>';