Ok..well here's the deal. I've been tryin to get ah form to work that acually sends me the details in the form to my email..I've tried about 4 different ways but for some reason the code always looks different in each script..so that has me kind od confused. But any how I read ah tutorial on how to make ah form and have the info emailed to you..that's great and just my luck everything works accept I don't receive the email..so I was wondering if I could get some of you to check out the code for me and see if there is something that might be coded wrong or something..here's the site I have with the workin script..
Www.skshyt.jt7.net/feedback.html
Here's the .php code which is names feedback.php and I have this file on my web host server.
<?php
$msg = "Name:t$namen";
$msg .= "Email:t$emailn";
$msg .= "Comments:t$commentsn";
$recipeint = "jaynsatx@tmail.com";
$subject = "Sidekickers chat feedback";
$mailheaders = "From:$emailn";
$mailheaders .= "Reply-To:$emailnn";
mail($recipient, $subject, $msg, $mailheaders);
header("Location:http://www.skshyt.jt7.net/thanks.html");
?>
Ok now here is the html code feedback.html
<html>
<head>
<title>feedback form</title>
</head>
<body>
<h1>Chat room comments<h1>
<form method="post" action="feedback.php">
Name: <input name="name" type="text" /><br />
Email: <input name="email" type="text" /><br />
Comments:<br />
<textarea name="comments" rows="5" cols="15">
</textarea><br/>
<input type="submit"/>
</form>
</body>
</html>
Well that's all..if you see something wrong or maybe you could direct me to ah easier code that cause the same affect as this code here I'd appreciate it..ah code that works though!..lol