Quote:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.style2 {color: #FFFFFF}
.style3 {color: #000000}
-->
</style>
</head>
<body>
<h4 class="style2"> </h4>
<form id="form1" name="form1" method="post" action="">
<h4 class="style2"><span class="style3">Nome: </span><br />
<input name="nome" type="text" id="nome" maxlength="50" />
</h4>
<h4 class="style2"><span class="style3">E-mail:</span><br />
<input name="email" type="text" id="email" maxlength="50" />
</h4>
<h4 class="style2"><span class="style3">Comentário:</span><br />
<textarea name="comentario" cols="50" rows="20" id="comentario"></textarea>
<br />
<br />
<input name="enviar" type="submit" id="enviar" value="Submit" />
</h4>
</form>
<h4 class="style2"><br />
<br />
</h4>
</body>
</html>
|
This is my form and what i want to do is when people press the submit button it sends to my email the comentaries in the form. I'm a complete dumb in program language, one thing (the only one) i know it's in php...
Could someone please help me?