I have a column in SQL 'Text' datatype and inside I have content within html tag, eg
somecontent:
- one
- two
Cheers folks
Nick
|
I have a column in SQL 'Text' datatype and inside I have content within html tag, eg somecontent:
Cheers folks Nick |
|||
|
|
MySQL wouldn't strip tags from text - it couldn't care less what the text is. PHP also wouldn't strip tags, unless somewhere in your code you do a If you want to force the browser to display the tags in the retrieved data, you can run the string through [ Or you can force the entire page to be rendered as plain text by doing
|
|||
|
|
Database content isn't stripped by PHP unless you explicitly tell it to. Are you sure your tags haven't been stripped before they were inserted? Alternatively try |
|||
|
|