I have a "div" tag with some text and a "p" tag with the title, I want to store those elements with its contents, including tags in the database, which belong to a user.What would be the best way to store the "div" with its content and the "p" with its title using PHP and MySQL?This is something very similar to how to store user's comments with their titles.Example:HTML\[code\]<p name="myTitle">This is my title</p><div name="myContent"> This is a paragraph This is a paragraph This is a paragraph This is a paragraph</div>\[/code\]Please help.