You have seen html form whose send e-mails based on content entered in the form and now you want the same form on your web site. Ok, no problem.
Let's start with html file which containing the form where user writes his message and send by pressing the [Send] button.
Please note that we have one input field named "send" with value parameter set to 1. This field we will use later when sending form to server to check that the form is truly sent.
Also in our example we using POST method for sending the data and for action of form we use the same file with form - $_SERVER['PHP_SELF']

