怎么防止刷新网页重复插入数据_PHP教程

WBOY
Release: 2016-07-13 10:51:45
Original
837 people have browsed it

关于怎么防止刷新网页重复插入数据方法很多也很简单的,下面我们就来提供几种参考的处理方法吧。

关于怎么防止刷新网页重复插入数据方法很多也很简单的,下面我们就来提供几种参考的处理方法吧。

如何防止刷新网页插入数据
我做了一个留言板,但是每次刷新就会插入信息,请问怎么做才能防止刷新插入数据呢

JS每次操作后返回
$regs=mysql_query($shouruinsert,$conn);
if($regs) echo "你的收入已经入库,请返回.不要刷新本页以免重复提交";
}
else{
echo "请检查你提交的数据是否规范或者联系管理员!!";}

可以在发表页生成个cookie,在提交页,如果提交成功了就把这个cookie清了,这个刷新的时候判断cookie是否存在就可以了

还有和种方法就是查询数据库之后直接判断,

if($regs){

die('is exisit');

}else{

mysql_.....

}

www.bkjia.com true http://www.bkjia.com/PHPjc/632538.html TechArticle 关于怎么防止刷新网页重复插入数据方法很多也很简单的,下面我们就来提供几种参考的处理方法吧。 关于怎么防止刷新网页重复插入数据...
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!