标头位置:将内容加载到页面div中

| 这是我正在建立的网站的结构: 我有first.php其中包括second.php。 在second.php中,我有一个指向表单的链接,我有$ _GET来获取在此结构的最后一页发送的url参数。 form.php告诉action.php(此结构的最后一页),开关的情况是FORM。 内箱形式我有:
header(\"Location: second.php?param1=OK&param2=OK\");
在这一行中,我使用参数加载了second.php页面,但我需要加载的是包括second.php以及参数的first.php页面,因此我可以使用$ _GET 有什么办法可以做到吗?下面的结构。 万分感谢! first.php
I\'m the first page<br><br>

<div style=\"width:500px;height:500px;border:2px solid red;\"><?php  include \"second.php\" ?></div>
second.php
<?php
$param1 = $_GET[\'param1\'];
$param2 = $_GET[\'param2\'];

?>
<script language=\"javascript\" src=\"http://code.jquery.com/jquery-1.4.4.min.js\"></script>
<script>

    $(document).ready(function(){

          $(\"#theform\").click(function(theevent){
             $(\"#pre_target\").html(\'<div id=\"target\"></div>\');               
                theform();
            });


 })
            function theform() {  
            $(\"#target\").load(\"form.php\", {}, function(){  });

            }  

</script>

I\'m the second page

<div id=\"pre_target\">
    <a href=\"#\" id=\"theform\">Go to form</a>
</div>
form.php
<form method=\"post\" action=\"action.php\">
  <input type=\"hidden\" name=\"ACTION\" value=\"FORM\">
<input type=\"submit\" value=\"submit\" name=\"submit\">
</form>
action.php
<?php

switch($_REQUEST[\"ACTION\"]) {

  case \"FORM\":

   header(\"Location: second.php#pre_target?param1=OK&param2=OK\");

  break;

    .
    .
    .
   ?>
    
已邀请:
如果我正确理解了您的问题,只需将\'second.php \'替换为\'first.php \'。 GET变量是SUPER Globals,这意味着它们是超级全局变量。如果first.php包含second.php,则second.php和first.php将共享相同的GET变量。
header(\"Location: second.php?param1=OK&param2=OK\");
改成:
header(\"Location: first.php?param1=OK&param2=OK\");
    

要回复问题请先登录注册