<?
if (!$action) echo "<form action=$PHP_SELF?action=go method=post><input type=submit value=ok></form>";
elseif ($action=="go") {
……//这里添加你要的东西
header("Location:http://www...");
}

解决方案 »

  1.   

    哦那在HTML中需要增加什么东西么?
      

  2.   

    呵呵,html呀,不用。
    你要用一个php文件才行。在php里面加上那些内容就可以了。
      

  3.   

    1.可以用form.action与submit()进行表单的转向2.用location.href="target.html"进行页面的导向3.用meta进行页面的导向.
    <meta http-equiv='refresh' content='0; url=next.html'>