在另一个中包含一个PHP文件

时间:2009-10-11 20:13:55

标签: php

如何从一个* .php文件转到另一个* .php文件?例如,如果我在index.php

中有这个
<?php 
 <form method="POST" action="second.php">
 <input type="button" name="GO">
 </form>
?>

,这在second.php

  <?php
    if ($_POST['GO'])
         // HERE SHOULD BE CODE LIKE "INCLUDE" OR SOMETHING TO GO TO index.php
  ?>

我尝试了include('index.php');,但它根本不起作用。有什么建议吗?

1 个答案:

答案 0 :(得分:3)

你的意思是重定向吗?

header('Location: index.php');
exit;