Strange problem occuring with the following code
<td> <input type="text" name="emisc1" size="30" maxlength="255" value=<?php print $line["emisc1"]; ?>></td>
When the php prints the value from field emisc1 it only prints the first character, for example, the value is "I hope this works" the field only displays "I". When you update the form it replaces the value in MySQL db with "I".
However, when printing the form only, the following code returns value of the field correctly...
<td><span class="bodytextfill"> <?php print $line["emisc1"]; ?></span></td>
The field type is varchar, 255
Any ideas, why this is malfunctioning? I'm at wits end!