I am getting an odd error. I have a form that submits values to a MySQL database. However, there are two fields that are not being submitted correctly. They are Text fields in the MySQL database as opposed to VARCHAR fields for the rest of them.
On my Form, I have single line text fields for everything except these two fields, which are multi line. So, it must be one of these that is causing the problem.
The problem is that instead of getting just the data stored in the MySQL database, I am getting all this stored:
value="this is a test phrase"
...instead of just... this is a test phrase
Any ideas?
A sample of my form code follows:
<td valign="top">Artitle Title</td>
<td><input name="TopicTitle" type="text" id="TopicTitle" size="50"></td>
</tr>
<tr>
<td valign="top">Article Body</td>
<td><textarea name="TopicBody" cols="50" rows="8" id="TopicBody"></textarea></td>
</tr>