生成word文件后如何重定向php页面

时间:2015-09-05 07:23:14

标签: javascript php

我在更新记录后生成了word文件。更新记录和生成的word文件很好,但生成word文件后我无法重定向另一个php页面。

PHP代码

//在update.php中

带有更新查询和

的代码 更新查询后,

在脚本中重定向 -

window.location = "quotation_word.php?quot_id=$quotation_idshow";

// in quotation_word.php 

// generating word file in php with -<br/>

header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment;Filename=document_name.doc");

// display code in word file

// generating word file is fine but
// Now, I want to go another php page. So what will I do for redirecting to other page after generate word file

请帮帮我。

1 个答案:

答案 0 :(得分:1)

这应该有效:

header('Location: http://www.example.com/');

或者如果你想通过javascript重定向:

echo "<script>window.location = 'http://example.com/';</script>";