我有一个POST
表格,里面当然有你需要提交的东西。当我提交它时,我通常将它们提交到另一个文件,例如action.php
。现在这是我的问题:在提交文件并完成用户想要的所有操作之后,您通常如何处理这种情况?你重定向回上一页吗?如果是这样,您如何证明用户想要的操作已执行并且没有错误?更具体地看下面的代码:
if ($_POST['something']) {
$doeverything
if $doeverything
{
what do you usually put here? how can I show a message here, in the same time, I am back to the previous page where I submitted my information in.
}
重定向回来后如何分配错误?