Possible Duplicate:
How should be kept as HTML tags in database?
I will store HTML code through admin page of my php program. I use prepared statements in PDO for storing. But before that, do i need to use htmlspecialchars() or htmlentities() ?
Or by storing html using prepared statement will work fine ? Any overheads later ?
Later this html is used to display as content inside a HTML page and this content from database should render as HTML itself.