设置操作值时,post / get不起作用

时间:2014-02-02 20:42:23

标签: php forms post get action

我有表格:

echo "
<form action='http://domain.com/' method='get'>
<input type='hidden' name='order_id' value='".$_SESSION['shoppingcart_id']."' />
<input type='hidden' name='account_id' value='".$account_id."' />
<input type='hidden' name='action' value='add' />
<input type='submit' class='form-button' value='Buy' />
</form>
";

get没有任何结果。

http://domain.com/

如果我将动作值设置为空,如:

<input type='hidden' name='action' value='' />

结果是:

http://domain.com/?order_id=xxxxxxxx&acount_id=xxxxxxxxx$action=

我很困惑为什么空行动会得到结果,但行动却没有得到任何结果!?

P.S。 “post”是一样的。

0 个答案:

没有答案