Basicalli there's no problem in storing pure HTML in a MySQL table. However, if you want to shove it in using an insert statement in a PHP script, double quotes can present a problem, so you might want to replace all instances of " with \" (the backslash being an escape character in both MySQL and PHP)
-L-