0

我创建了一个允许用户上传的表单。我将“动作”作为“动作:upload.php”并且代码运行良好。

但是,在上传后,浏览器会upload.php按预期显示输出。我需要添加什么到 upload.php 以便它自动返回到我可以显示最近上传的图像的表单?

4

1 回答 1

1

用途:header("location:yourpage.php")在您upload.php重定向到yourpage.phpyourpage.php 可能是您要显示图像的页面的位置

如果您在使用时遇到问题:

ob_start();
header("location:yourpage.php")

那应该有帮助

于 2012-12-01T17:54:33.963 回答