Say you have the following sentence in your database and you display that in your site using php
You see the sentence "
Welcome " in bold.
Now my question is how do you print the above sentence when it's in the following format (in your DB):
Which is nothing but just that the <strong> and </strong> tags have been translated to their corresponding html code.
I tried to print it and all it came up on the screen is
Is there any php function that I can use to display any such html values stroed in the DB that actually makes the sentence bold. I am assuming any such function will translate all such html values stored in the DB to be output on the screen.
I have used a few functions but none seemed to work.