[Date Prev][Date Next][Thread Prev][Thread Next][Interchange by date
][Interchange by thread
]
[ic] ic 4.8.5 - pesky "1" shows up on email form
I've been working on setting up a feedback form with the results emailed
to me. It works, but the [email]...[/email] tag causes a "1" to be
displayed. Very annoying.... how do I get rid of it ?
My form is very simple... here's the code section from my feedback.html:
-------begin code section-----
<form action="[process]" method=post>
<input type=hidden name=mv_session_id value="[data session id]">
<input type=hidden name=mv_doit value=return>
<input type=hidden name=mv_nextpage value=feedback2.html>
First Name:<INPUT NAME=fname type=text size=15><br>
Last Name:<INPUT NAME=lname type=text size=15><br>
Email:<INPUT NAME=email type=text size=15><br>
<P>
<input type="image" alt="Search Go" width="57" border="0"
src="__THEME_IMG_DIR__go.gif">
</form>
-------end code section-----
And here is the section from the feedback2.html where the "1" gets
generated:
------begin code section--------
[email
to="Feedback@mydomain.com"
subject="Feedback"
from="[value email]"
reply="[value email]"]
fistname=[value fname]
lastname=[value lname]
email=[value email]
[/email]
----end codes ection----------