Hi,
I have a field in a form that is generated by FCKEditor (http://www.fckeditor.net/). Now this field has to be stored in a MySQL database. Should I store it as a BLOB or TEXT? Could someone give me an advance?
Unless the data being entered is a Binary large object see http://dev.mysql.com/doc/refman/4.1/en/blob.html then you should use a Varchar field
well it has a limit of 300 words (but it's not only text, all html coding is included into that...that's more than 255 characters that varchar allows...So I guess I should go with TEXT....