How to prevent PHP form from refreshing and submitting

WBOY
Release: 2016-07-29 09:12:08
Original
1569 people have browsed it

Excerpted from http://bbs.chinaunix.net/thread-667547-1-1.html

-------------------------- ------------------------------------------

When outputting the form page: (An example, not perfect)
$intFlag = md5(time());
$strFlag = 'flag_$intFlag';
$_SESSION["$strFlag"] = 1;

Then when accepting data:
$action_flag = trim($_POST["action_flag"]);
if ($action_flag!="" && $_SESSION[" $action_flag"]==1)
{
$_SESSION["$action_flag"] = 2;
//Processing data
}
else
{
die("Duplicate submission or other errors");
}

The above introduces the method of preventing refresh submission of PHP forms, including the relevant aspects. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template