我正在尝试在 php 中编写一个页面,该页面在进行一些处理时显示加载消息,然后自动重定向到另一个页面
<?php
//show a loading message - this is the bit I need help with
// do some processing - don't need help with this bit
header("Location: http://www.mysite.com/mynextpage.php");
exit;
?>
我不能使用 echo 或 javascript,否则我会在页面执行时收到“无法修改标头信息 - 标头已发送”错误。
有什么线索吗?