user3386779
user3386779

Reputation: 7175

Inserting rich text box value in database with format

I want to insert rich text box value in database with given format.Now value in rich text box is inserted and alignment get messy while inserting.In my rich text box I typed heading in bold but in my database I saved into normal text. I used varchar data type for this field. I want to know how to store rich text box value with format

enter image description here

Upvotes: 0

Views: 1338

Answers (2)

dissenyx
dissenyx

Reputation: 1

You should use text data type for this field.

Upvotes: 0

Drop Shadow
Drop Shadow

Reputation: 808

Set that column Collation as utf8_general_ci

Upvotes: 1

Related Questions