Wed 8 Nov 2006
Worked for me. what is the URL of your form?
Can you get your form to send you anything? If so, then you should just need to add
HTML:
-
<SCRIPT language="JavaScript" TYPE="text/javascript">
-
var AgreeString = "I agree to do as you tell me<br /> I further agree to eat salad";
-
document.write(AgreeString);
-
document.write("<INPUT TYPE=hidden NAME=\"Agreement\" VALUE=\""+AgreeString+"\">");
-
</SCRIPT>
-
<p>Please type your name in this field to indicate you agreement of the terms
-
<INPUT TYPE=text NAME="IAgree" SIZE="50">:
-
</p>
to your form. I have meddled with my FormMail, but the basic functionality is the same. Maybe you've included some reserved characters such as # in your message.


November 9th, 2006 at 4:43 pm
I tried your script and for some reason, I can't get it to work for me. Can you view my script below and tell me what is wrong. Please send it to my email. Thanks in advance Julian95.
November 10th, 2006 at 12:27 am
The only problem I can see with this is that the <br> are on separate lines. If you want to break the definition over a line end, then you need to end the first line with a backslash. For example:
will work, whereas
will not