All articles| All Pictures| All Softwares| All Video| Go home page| Write articles| Upload pictures

Reading number is top 10 articles
LINQ体验(9)——LINQ,to,SQL语句之Insert、Update、Delete操作
XSL学习教程:运算符和函数_[XML教程]
Visual C++ 6.0教程:#include文件包含指令
用ASP.NET2.0如何随机读取Access记录?_[Asp.Net教程]
SQL Server 2000 中使用正则表达式_[SQL Server教程]
在ASP.net中从SQL数据库保存取出图片(可用于上传图片)
delphi高级vcl组件工具栏组件(TToolBar)使用实例
asp.net结合js的网页打印程序_[Asp.Net教程]
常用的二十六个优化性能方法(ASP.NET)_[Asp.Net教程]
FreeBSD5.3下安装Apache+PHP+MySQL+Tomcat_[PHP教程]
Reading number is top 10 pictures
Absolutely shocked. National geographic 50 animal photographys6
30 beautiful school beauty1
全球十大灵异酒店
Lewd,it is too lewd.
Extremely rare TianShan Mountains snow lotus1
Steal to eat bacon bird
Exquisite decoration is not paying too much1
China's first snake village3
The money of more than 100 countries and regions22
乳娘帕梅拉安德森2
Download software ranking
Boxer vs Yellow3
Dance with duck(male prostitution)
VC++6.0培训教程
Unix video tutorial11
The Bermuda triangle1
linux安装大全
尖东毒玫瑰A
在线棋牌游戏3.05版
变速齿轮3.26
Unix video tutorial2
aaa published in(发表于) 2013/12/24 5:50:15 Edit(编辑)
PHP小技巧:避免表单的重复提交的方法_php资料_编程技术

PHP小技巧:避免表单的重复提交的方法_php资料_编程技术

PHP小技巧:避免表单的重复提交的方法_php资料_编程技术-你的首页-uuhomepage.com

你是否遇到过“重复提交”的问题?要解决这个问题其实并不难。这里有一个简单的方法避免同一表单的重复提交。

首先,我们可以定义一个session变量用来保存一个表单的提交序列号。这里我定义为“$userLastAction”。

然后在表单里加入一个hidden变量,把值设为$userLastAction+1:

>

最后,在处理提交之前判断表单是否已被提交过:

if($lastAction>$userLastAction and inputIsValid(...)){
$userLastAction++; // 序列号加1
// 处理表单数据
}

Avoid multiple form submissions
Submitted By: Douglas E. Cook
Date: 07/26/00 19:46
Does your database suffer from "duplicate post" syndrome? The cure isn't too difficult. Here is a simple way to prevent users from submitting the same form multiple times.

First, declare a session variable to store a serial number for each form. I call mine "$userLastAction." Then, in every form where duplicate submission is a problem, include a hidden field, and set the value to $userLastAction+1:

>

Finally, verify that the form has not been previously submitted before acting on the submission:

if($lastAction>$userLastAction and inputIsValid(...)){
$userLastAction++; // Increment serial number
// Act on form here
}

这只是一个小技巧,用来避免一个表单的重复提交。这样多少可以防止一些灌水的现象,另外有时候由于网络状况等原因用户不知道提交是否成功,也会再次提交同一份表单。

这个技巧的主要原理是不允许用户回退后再次提交,也就是说回退后修改再提交也是不允许的,而且也不能避免Ctrl-C/Ctrl-V的灌水办法。究竟有没有用,还是看各位站长的喜好了。





添加到del.icio.us 添加到新浪ViVi 添加到百度搜藏 添加到POCO网摘 添加到天天网摘365Key 添加到和讯网摘 添加到天极网摘 添加到黑米书签 添加到QQ书签 添加到雅虎收藏 添加到奇客发现 diigo it 添加到饭否 添加到飞豆订阅 添加到抓虾收藏 添加到鲜果订阅 digg it 貼到funP 添加到有道阅读 Live Favorites 添加到Newsvine 打印本页 用Email发送本页 在Facebook上分享


Disclaimer Privacy Policy About us Site Map

If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.