I am storing html tags like <ul><li>....</li></ul>, etc in the table. I want to retrieve these values as html content. When I retrieve this data I want to show it as HTML content, that is, it should show bullets instead of <ul><li>....</li></ul>.
Code which I am trying:
<?php echo stripslashes($row3['description'])?>
I have even tried htmlentities(), html_entity_decode() but, none have worked.
<ul> <li>......</li></ul>.