PHP小技巧:避免表單的重複提交的方法

來源:互聯網
上載者:User

你是否遇到過“重複提交”的問題?要解決這個問題其實並不難。這裡有一個簡單的方法避免同一表單的重複提交。

首先,我們可以定義一個session變數用來儲存一個表單的提交序號。這裡我定義為“$userLastAction”。

然後在表單裡加入一個hidden變數,把值設為$userLastAction+1:

<input type=Hidden name=lastAction value=<? =$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:

<INPUT TYPE=HIDDEN NAME=lastAction VALUE=<?= $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的灌水辦法。究竟有沒有用,還是看各位站長的喜好了。



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.