I'm saving some text into my database from a text editor.
Which looks like this in the DB:-
<p>Some text blah blah blah</p><br><p>Some more text blah blah blah blah blah blah blah</p><br><p>And even more text blah blah</p>
When I echo the the text in PHP, I just get the result above. How can i get it to use the HTML markup, instead of just printing it. For example, a '< br >' tag should create a line break instead of just printing it.
Thanks!

html_entity_decode. If that works your string is saved in the database as encoded html. See w3schools.com/php/func_string_html_entity_decode.asp