up vote 0 down vote favorite
1
share [g+] share [fb]

I'm creating a database with what I anticipate will be a long (perhaps several paragraphs for some tuples) attribute. I'm assigning it text instead of varchar. I have two questions:

  1. Should I give a maximum value for the text field? Is this necessary? Is it useful?
  2. Since the contents of this field will be displayed on a website in HTML, do I need to include paragraph tags for paragraph formatting when I enter records into mysql?
link|improve this question
feedback

4 Answers

up vote 3 down vote accepted
  1. Not really, define as text.
  2. If you want to display text in HTML with formatting you will either have to build the HTML tags into the text in the database or parse before printing and add them then.
link|improve this answer
feedback
  1. No define it as text or mediumtext
  2. If the data will be output as HTML, store HTML tags
link|improve this answer
feedback

1) I do not give max length for fields that I place HTML in, as it is variable and could always grow longer. 2) I would place all HTML in the field, but it depends on if you want to do that extra step in your application.

NOTES: Always HTML encode your HTML data before inserting to database.

link|improve this answer
feedback

text field nas no length parameter.
enter whatever you with as long as it displays correctly

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.