i have a form on an html page which submits to a php page.
form.html page has....
<form action="form_action.php">
</form>
form_action.php then processes the form submission.
How can i prevent anyone from setting up the same form on another server and submitting to my php page form_action.php, like this
<form action="http://myserver/form_action.php">
</form>
please help.....