u have different varible Posts then form names
this is the form should look like
<form action="sendmail.php" method="POST">
<input type="text" name="name" />
<TEXTAREA NAME="text" rows="10" cols="30">
</TEXTAREA>
<input type="submit" value="Post" />
</form>
up there ^ in the html u have to input areas one a small input feild the other is a TEXT FIELD or TEXT AREA
this first one for the persons name is called name
the textfield is called text
in PHP when u try to get the varibles out of a form u have to get the variables by using $POST["name"] and $POST["text"] if u dont have global variables on!
if ur not worried about security go into ur PHP.INI file and edit the
global variables line to ON and u can get the variables buy using this
the too form names are
name
text
they equal (if global varibles are on) in the sendmail.php
name is $name
text is $text