comments are being saved twice on a file when i refresh the webpage

前端 未结 2 951
谎友^
谎友^ 2021-01-24 17:00

i am writing a comment block in my website. i save the comment in a file and print the contents on the webpage. but the problem is when i refresh the webpage the last comment ge

2条回答
  •  悲哀的现实
    2021-01-24 17:21

    Here are quick solutions:

    1. After your form has been saved or if it has an error, redirect them to the same page but with GET variables in the uri like process.php?action=save. Use header function for redirection.

    2. You also use cookies to save the IP of the person who submits the form and restrict him for certain period to be able to submit the form again.

提交回复
热议问题