我注意到我可以在POST請求中使用$_GET
,爲什麼可能呢?
HTML表單:
<form method="POST" action="test.php?id=123">
<input type="text" name="foo">
<input type="submit">
</form>
test.php的:
<?php
var_dump($_GET, $_POST);
輸出:
array (size=1)
'id' => string '123' (length=3)
array (size=1)
'foo' => string 'bar' (length=3)
你爲什麼要這樣回答自己的問題? – OptimusCrime
@OptimusCrime,因爲我已經知道了答案,並且我想與其他人分享;)[請參閱我能回答我自己的問題嗎?](https://stackoverflow.com/help/self-answer) –
但是..這個問題已經被多次回答了? – OptimusCrime