I don't know PHP well, but I used to use a PHP code to create forms in web pages, here is the code:
--------------------------------------
<?php
if ($_SERVER['REQUEST_METHOD']=="POST"){
$to="
[email protected]";
$subject = ' '.$HTTP_POST_VARS['subject'];
$from = ' '.$HTTP_POST_VARS['email']...