I'm sorry, I'm very new at all of this and our IT department upstairs is next to null on help. Can anyone help me spot the parse error problem? Thank you so much in advance.
<?
if ($submit) {
$to = "blah@blah.com";
$subject = "Seedling Catalog Order Form";
$header = "From: $name";
$msg = "$address\n";
$msg .= "$city\n";
$msg .= "$state\n";
$msg .= "$zip\n";
$msg .= "$phone\n\n";
mail ($to, $subject, $msg, $header);
echo "Thank you. Your request has been sent.";
} //end if
else {
?>