在php中打开另一个页面

时间:2011-10-23 11:58:44

标签: php redirect

  

可能重复:
  PHP page redirect

一旦进程完成,我如何重定向到php中的另一个页面。

例如,我的<form>标记将action属性设置为“process.php”。在process.php上的进程完成后,我希望它重定向到它所从的站点。怎么做的?

4 个答案:

答案 0 :(得分:18)

使用以下代码:

if(processing == success) {
  header("Location:filename");
  exit();
}

你很高兴。

答案 1 :(得分:9)

<?php
    header("Location: index.html");
?>

请确保在此代码之前没有任何内容实际写入页面,否则它将无效。

答案 2 :(得分:1)

使用header( 'Location: /my-other-page.html' );之类的内容重定向。在执行此操作之前,您无法在页面上发送任何其他数据。

答案 3 :(得分:0)

header( 'Location: http://www.yoursite.com/new_page.html' );

在你的过程中。 php 文件