+ 2
How to post a form to another web?
How to post a form to another web with php?
2 Antworten
+ 4
Do you mean: post a form to a server?
If so:
You have to specify the url in the action attribute of the form element.
example:
<form action="url" method='post'>
...
+ 1
oh thank you sir :)