I have a form to display text from a textfield.
This form is activated from another page where several records are browsed at a time. THe information on the browse page is just like it is entered in the DB.
When the single record is displayed in a form for editing the display changes. Prior to the content 3 empty square boxes appear (same size as text).
I can use phpadmin to browse the table and the info does not have the squares.
Here is display code from browse:
<td colspan="7"><?= htmlspecialchars(stripslashes($row['content']));?></td>
Here is the code for the single record display form:
<?php echo htmlentities(stripslashes($row['content']));?></textarea></td>
Why do the little squares appear?