从script.php中打开file.html

时间:2011-08-11 18:05:17

标签: php redirect

我想从一个Anchor调用一个php脚本。

file.html

<body>
    <a href="file.php?id=1">Click</a>
</body>

的script.php

<?php

    $id = $_GET['id'];

    ... <do some stuff>;

    <when finished doing some stuff reload file.html>;

?>

然后,一旦我的script.php中的php运行,我想重新打开原始文件。我尝试过load()和loadHTML(),但都没有用。什么PHP函数将加载file.html?

非常感谢。

2 个答案:

答案 0 :(得分:4)

您需要将用户重定向到原始页面:

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

请确保在重定向之前不输出任何内容(将数据发送到浏览器)。

答案 1 :(得分:2)

echo file_get_contents("file.html");