我想找到一种方法让我的用户不必等待 php 脚本的输出并在脚本在服务器上运行时被重定向到页面。
基本上,用户提交了一个需要很长时间才能处理的表单,我想将用户重定向到一个页面,通知他该表单正在处理并且其输出稍后将可用(我想在输出时打开一个选项卡准备好)。
基本上我想要这样的东西,我尝试过但没有成功,
if ($form_valid) {
process_form(); // this would need not to be running on the current page so that the user don't have to wait for it to be ready (timeout problems)
header('Location: http://example.com/form_submitted_output_coming_soon.html');
}
我希望它不会太模糊。
预先感谢您对我如何做到这一点的任何帮助/建议。