about how PHP uses tokens to prevent forms from repeating submissions

Source: Internet
Author: User
This article mainly describes the PHP use token to prevent the form of repeated submission method, by generating an encrypted random number into the session token variable, while putting the value into the form of hidden submissions, to prevent the form of repeated submissions, the need for friends can refer to the next

<?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 ';  }}? ><form method= "POST" action= "" >  <input type= "hidden" name= "token" value= "<?php echo $_session[" Token ']?> ' >  <input type= "text" name= "test" value= "Default" >  <input type= "Submit" value= "submit "/></form>

Summary: The above is the entire content of this article, I hope to be able to help you learn.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.