not much help from the site ... i found a book today with the perfect code snippets; however, after submitting the button on the contact.html page with <form action="contact.php" method="post"...>, i receive:
"parse error, unexpected T_STRING, expecting ']' .../contact.php on line 63"
the line referred to in the error is the $formsent = mail (...) line in the following code in contact.php:
<?php
/* receive and email form data from contact.html */
$name = $_POST['contact_name'];
$company = $_POST['contact_company'];
$email = $_POST['contact_email'];
$phone = $_POST['contact_phone'];
$subject = $_POST['contact_topic'];
$comments = $_POST['contact_comments];
$formsent = mail('
[email protected]', $subject, $comments);
if ($formsent)
{echo "Thank you, $name. We have received your comments, and will respond with the next 48 hours.";}
else
(echo "We are currently experiencing problems with our contact form and apologize for any inconvenience. Please try again at your convenience."

?>
PLEASE HELP!! ... thank you (the winkie face is actually a ";" and ")" in the php code)