Quote:
Now I've done something... the unauthorized domain message is gone but now I
get "Nothing was sent by a form. (No data was sent by POST or GET method.)
There is nothing to process here". Looks like I have fixed one thing and
screwed up another... |
suggestion-
Approach things methodically- from the changes i see in the code you are
flailing around a bit.
find this:
<body>
<form>
<form action="cgi-bin/formmail.php" enctype="text/plain"
name="contact_us" id="contact_us">
delete the first <form> tag, and change the second one as shown:
(i may have omitted the method attribute in my earlier reply)
<body>
<form action="cgi-bin/formmail.php" enctype="text/plain"
name="contact_us" id="contact_us" method="POST">