php按钮参数丢失

时间:2014-04-08 15:21:42

标签: php button

我在php中创建一个按钮,想要在点击时调用带参数的php:

echo '<form method="get" action="./ash.php?q=Y"    >';
echo '<button type="submit"    >QUERY</button>';
echo '</form>';

当我点击按钮时,确实调用了ash.php,但q参数在此过程中已被“遗忘”。 怎么会这样?

1 个答案:

答案 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>';