"; echo "

All three fields of this form are required.

echo "

I really don't think that's too much to ask...

"; echo "

Fill in the ones you missed, they are listed below.

"; } if ($Name == "") { echo "

Your Name

"; } else { echo ""; } if ($Email == "") { echo "

Your Email

"; } else { echo ""; } if ($Comments == "") { echo "

Comments or Questions

"; } else { echo ""; } if (($Name == "") || ($Email == "") || ($Comments == "")) { echo ""; echo ""; echo ""; } else { $message = "Name: $Name\nEmail: $Email\nComments: $Comments\n"; $extra = "From: $Name\r\nReply-To: $Email\r\n"; mail ("noone@nowhere.com", "Website Email", $message, $extra); echo "

Thanks for your inguiry, $Name.

"; echo "

A response will be sent to $Email as soon as possible.

"; } ?>