Possible Duplicate:
What structure type do I use for HTML content (MySQL)
What’s the best way to store HTML code in MySQL?
If I have, let’s say an entire page of source code, and I want to save it, what data type should I use for the column in MySQL?
Also, is it better to just save the code as a file, with a filename equal to the primary key, a unique id, created in MySQL (maybe to save space in the data file?)
I would recommend TEXT. I think blobs are more for multimedia etc. than text.
wikipedia blob