Mine. Its very simple. bugs.php (rename to your likings)  <BR><form method=post action="thanks.php"><table width="300" border="0" cellspacing="0" cellpadding="0"><font face="Verdana" size="1" color="Gray"> <tr>  <td width="108"><font face="Verdana" size="1" color="Gray">cUsername:</td> <td width="192"> <input type="text" name="name"> </td> </tr> <tr>  <td width="108"><font face="Verdana" size="1" color="Gray">E-Mail Address:</td> <td width="192"> <input type="text" name="thereemail"> </td> </tr> <tr> <td width="108" valign="top"><font face="Verdana" size="1" color="Gray">Title:</td> <td width="192"> <textarea name="message"></textarea> </td> </tr> <tr>  <td width="108"> </td> <td width="192"> <input type="submit" name="Submit" value="Send Form"> </td> </tr> </table> </form> thanks.php  <?php   if($sentemail == "2"){   include("sorry.php");    }else{    $num = $sentmessage + 1;   setcookie("sentemail","$num",time()+600); //set the cookie   $email = "Reported by:\t$name (\t$thereemail )\nMessage:\t$message\nIP Address:\t$REMOTE_ADDR\n\n"; $to = "gamehead@hisemail.com";  $subject = "Subject of submission u want";  $mailheaders = "From: $thereemail <> \n";  $mailheaders .= "Reply-To: $thereemail\n\n";  mail($to, $subject, $email, $mailheaders);  include("thanksecho.php");  }  ?> thanksecho.php  <form method=post action="thanks.php"><table width="300" border="0" cellspacing="0" cellpadding="0"><Center><center>Thank you for submitting the form. sorry.php  (Copy code from thanksecho.php here)