Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个允许用户上传的表单。我将“动作”作为“动作:upload.php”并且代码运行良好。
但是,在上传后,浏览器会upload.php按预期显示输出。我需要添加什么到 upload.php 以便它自动返回到我可以显示最近上传的图像的表单?
upload.php
用途:header("location:yourpage.php")在您upload.php重定向到yourpage.phpyourpage.php 可能是您要显示图像的页面的位置
header("location:yourpage.php")
yourpage.php
如果您在使用时遇到问题:
ob_start(); header("location:yourpage.php")
那应该有帮助