Can somebody explain exactly how i put the php form handler in my html code?

or is it seperate as well as related to a html formula from an additional page. an additional thing is i do not know php though usually know i need this to get a email form working.

One thought on “Can somebody explain exactly how i put the php form handler in my html code?

  1. The simple way is just need to make a form (inside a something.html) for posting the items´s value and send those item´s value to another page(ie: email.php) through form method “POST” or “GET” But u should use to POST method. Once you got those values into email.php then just write this following below code.

    in calling file (something.html)

    in receiving file (email.php)
    variables: $_POST [ ' variablename ' ] )

    Build $headers, $subject, $message, $to
    $res = mail ($to, $subject, $message, $headers);

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>