如何从一个* .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');
,但它根本不起作用。有什么建议吗?
答案 0 :(得分:3)
你的意思是重定向吗?
header('Location: index.php');
exit;