php使用表单post方法进行页面

Posted BurningChen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php使用表单post方法进行页面相关的知识,希望对你有一定的参考价值。

<?php
$action = \'http://www.cnblogs.com/burningc/\';
$method = \'post\';
$key = \'\';
$val = \'\';

$shtml = "<form id=\'submit\' name=\'submit\' action=\'".$action."\' method=\'".$method."\'>";
$sHtml.= "<input type=\'hidden\' name=\'".$key."\' value=\'".$val."\'/>";
$sHtml = $sHtml."</form>";
$sHtml = $sHtml."<script>document.forms[\'submit\'].submit();</script>";

echo $sHtml;

  

header(\'location:./test.php?i=1\');  跳转方式是以get的方式跳转

以上是关于php使用表单post方法进行页面的主要内容,如果未能解决你的问题,请参考以下文章

PHP如何不用表单进行POST传递

php中提交表单数据的POST()方法和GET()方法

php一个表单提交多个页面,怎样获取按钮提交过来的值

C# 模拟 post提交php页面的表单

使用ajax将表单提交给php而不刷新页面

php中如何防止刷新一次提交一次