0

I have a html form post. anyone on the web can access the page and submit the form,

but how can I be sure that the form was submitted using my page? you problem you that anyone can snif over the network, check the http post request and replicate it

my issue is that i don't have users, so really anyone can access the page, but i want the form to be submitted using my page

what are my option?

my server side is php

sarah
  • 1,201
  • 1
  • 9
  • 29

1 Answers1

-1

you can send visitors a cookie with a view, and have the server only accept form submissions from clients with a cookie.

Alexander McNulty
  • 870
  • 1
  • 11
  • 19