I realize that this question is a little obscure. I have a blog (
http://www.patentchronicles.com) that is hosted using Wordpress. I have created an entry in Wordpress that contains the signup form for ListMailPro.
<form method=post action=http://www.patentchronicles.com/newsletter/signup.php>
<input type=hidden name=list value=1>
First Name: <input type=text name=fname size=10><br>
Last Name: <input type=text name=lname size=10><br>
Email: <input type=text name=email><br>
<input type=submit name=sup value="Subscribe Me!">
</form>
When I submit the form I get the following message:
"There were errors with your subscription to our mailing list.
The error messages are as follows:
You didn't enter an email address."
I did fill in an email address.
The code works if it is posted outside of Wordpress.
Other php-based forms work fine in Wordpress.
This one works just fine in Wordpress.
<form name="form" method="post" action="contactscript.php">
<table width="400" border="0" cellpadding="2" cellspacing="2" summary="">
<tr>
<td width="200" valign="top" align="right">Your Name: </td>
<td width="200" valign="top" align="left"> <input type="text" name="name" size="25" maxlength="200" />
</td>
</tr>
<tr>
<td width="200" valign="top" align="right">Your Email:</td>
<td width="200" valign="top" align="left"> <input type="text" name="email" size="25" maxlength="100" />
</td>
</tr>
<tr>
<td width="200" valign="top" align="right">Your Comments: </td>
<td width="200" valign="top" align="left"> <textarea name="msg" cols="25" rows="4"></textarea>
</td>
</tr>
<tr>
<td width="200" valign="top"> </td>
<td width="200" valign="top" align="left"> <input type="reset" name="Reset" value="Reset" />
<input type="submit" name="Submit" value="Submit" /> </td>
</tr>
</table>
</form>
Any ideas? The code can be seen at:
http://www.patentchronicles.com/monthly-patent-chronicles/Plain (working) code at
http://www.patentchronicles.com/subscribe.htmlThis is important to me. If you feel that working on this problem requires compensation, please let me know.