Send form values in a particular email id

How to send form values in a particular email id in php?

                Thanks.

Depending on the form method you use, in your PHP script the form values are available in the $_GET or $_POST array ( $_GET[‘formfieldname’] ).
And to send a mail you can use the PHP mail() function