I am pulling information from an SQL database to populate in a form using the PHP Echo command. One of the rows from the sql database includes HTML markup.
When pulling information and populating the form with the data, it will not pull the HTML markup in the form. It looks like this:
Is there a way to have the full HTML markup populate in the form? This is the code I am currently using:
<input name="tag" type="text" id="tag" value="<?php echo $rows['tag']; ?>" size="30"/>