Truncated html form data — should I mess with data type in tables?
-
When pasting something like this in the html field of post
<form> <input style="border-color: rgb(85, 85, 85);" name="showImage1" class="showImageTextBox" onfocus="this.form.showImage1.select()" onclick="this.form.showImage1.select()" value="<a href="https://www.mysite.com/the-subject"><img src="https://map.mysite.com/stash/image.gif" border=" 0 " alt="The Subject"></a><br /> onmouseover="this.style.borderColor='#FFC533'" onmouseout="this.style.borderColor='#555555'" size="20" type="text"></p> </form>
instead it is pasted as
<form><input class="showImageTextBox" style="border-color: #555555;" onclick="this.form.showImage1.select()" onmouseover="this.style.borderColor='#FFC533'" onmouseout="this.style.borderColor='#555555'" alt=""New" name="showImage1" size="20" src=""https://map.mysite.com/stash/image.gif"" type="text" value="<a href=" /> </form>
basically truncating the guts of the form. I’m wondering if I should try messing with varchar setting in tables and which table?
- The topic ‘Truncated html form data — should I mess with data type in tables?’ is closed to new replies.