How can I secure a form Post?
Example:
File1 - form.php
File2 - action.php
The form.php posts to action.php.
How can I find out if the form data in action.php was really posted from form.php?
How can I secure a form Post?
Example:
File1 - form.php
File2 - action.php
The form.php posts to action.php.
How can I find out if the form data in action.php was really posted from form.php?
If u are using the post method to send data to action.php it is some what secure than the get method
<form action="action.php" method="get">
//ur elements
<br><input type="submit"></form>