在web中常用的就是form,其中有两种方式提交get于post.
code:test1.php
<form method="get" action="?m=test">
<input type="hidden" name="ok" value="real" />
<input type="submit" value="sub" />
</form>
<?php
print_r($_GET);
print_r($_POST);
?>
发现action里面的参数如果通过get提交的话是无法在服务器端获取的,即get提交是把form里面的数据序列化后当做参数提交服务器的,而自己的写的参数就会被覆盖,这样就在服务器端获取不到了。
code:test2.php
<form method="post" action="?m=test">
<input type="hidden" name="ok" value="real" />
<input type="submit" value="sub" />
</form>
<?php
print_r($_GET);
print_r($_POST);
?>
如果是通过post提交:$_GET会获取通过url(get)提交的数据.
at all:
GET提交只提交form中的数据,不会把已经写在action中的(?m=test)数据提交。
POST提交:把form中的数据以post提交,把action中的(?m=test)以get方式提交。