I am in the works of creating a site that relies heavlily on PHP and MySql. My question is, when I user the following code
<TD>Properties</TD>
<TD><Input Type=text Name=properties value=$properties</TD>
</TR>
within a page for administration purposes, the text gets truncated within the HTML.
ie.. properties should equal something like
"Florida State University" but it gets truncated (within the input tag) to "Florida". It's not a size problem or Database problem, because the correct value is extracted elsewhere, just an HTML Input box problem. Can anybody tell me how to correct it, without using a TEXT AREA tag?
Thanks,
Todd