PHP uses token to prevent the form from repeating the submission method, token form
The example in this article describes how PHP uses tokens to prevent forms from repeating submissions. Share to everyone for your reference, as follows:
<?php/** PHP uses tokens to prevent forms from repeating a form * This processing method is purely for beginners ' reference */session_start (); function Set_token () { $_session[' token '] = MD5 (Microtime (TRUE));} function Valid_token () { $return = $_request[' token '] = = = $_session[' token ']? true:false; Set_token (); return $return;} Generates a tokenif (!isset ($_session[' token ') "If token is empty) | | $_session[' token ']== ') { set_token ();} if (isset ($_post[' test ')) { if (!valid_token ()) { echo "token error"; } else{ Echo ' successfully submitted, Value: '. $_post[' test '; }}? >
More readers interested in PHP related content can view the topic: "PHP Curl Usage Summary", "PHP operation and operator Usage Summary", "PHP Network Programming Skills Summary", "PHP Basic Grammar Introductory Tutorial", "PHP operation Office Document tips summary (including word, excel,access,ppt), "PHP Date and Time usage summary", "PHP primer for Object-oriented programming", "PHP String Usage Summary", "Getting Started with Php+mysql database operations" and "PHP Common Database Operations Skills Summary"
I hope this article is helpful to you in PHP programming.
Articles you may be interested in:
- PHP Token tokens Improved version
- PHP token (token) design
- To resolve the PHP form repeating commit implementation method
- PHP prevents forms from repeating the method analysis by recording IP
- A summary of several common methods of PHP preventing forms from repeating submissions
- thinkphp ways to prevent forms from repeating submissions
http://www.bkjia.com/PHPjc/1119994.html www.bkjia.com true http://www.bkjia.com/PHPjc/1119994.html techarticle PHP uses tokens to prevent forms from repeating submissions, and the token form is an example of how PHP uses tokens to prevent forms from repeating submissions. Share to everyone for your reference, as follows: ...