Can you put a lot of HTML into a database field? ie, can you put : <b>Hello</b><br>how are you today?<br>
into a field and then when PHP gets it, it'll come out in that format?
Yes, it is possible.
Make a MySQL database and a table, and then a text field (wide enough). Then, put your HTML code in the field, like a normal text string.
It works, I have done it.
KrycheK, what is the difference between BLOB and TEXT in MySQL in terms of performance and functionallity?
for more detail, you can find in the mysql menual 7.3.7.2 The BLOB and TEXT types
I say "text" but it don't mean "TEXT". Just use a text field, like BLOB, TEXT, VARCHAR... you choose, all text fields work for that question.