The field Comment in my User table the Data looks like the folowing:
Comment
==================
point 5 "excelent"
point 4 "very goood"
point 3 "good"
point 2 "fair"
point 1 "poor"
The problem I'm having is that when I go and get these records out of the DB and display them w/ the <cfoutput>, whatever information that appears within quotes disapears. For example:
point 5
point 4
......
But, if I go to the field Comment and I manually change the records to be like
point 5 &qutexcelent&qut
point 4 &qutvery good&qut
point 3 &qutgood&qut
point 2 &qutfair&qut
point 1 &qutpoor&qut
Note: &qut is the special character equivalent to quotes
My output comes just fine (whatever its in quotes does not desapear) eg.
point 5 "excelent"
point 4 "very goood"....
My question is, how can I display these records (point 5 "excelent"..) without having to go and manually replace quotes (" w/ the special character (&qut) in the DB?
Comment
==================
point 5 "excelent"
point 4 "very goood"
point 3 "good"
point 2 "fair"
point 1 "poor"
The problem I'm having is that when I go and get these records out of the DB and display them w/ the <cfoutput>, whatever information that appears within quotes disapears. For example:
point 5
point 4
......
But, if I go to the field Comment and I manually change the records to be like
point 5 &qutexcelent&qut
point 4 &qutvery good&qut
point 3 &qutgood&qut
point 2 &qutfair&qut
point 1 &qutpoor&qut
Note: &qut is the special character equivalent to quotes
My output comes just fine (whatever its in quotes does not desapear) eg.
point 5 "excelent"
point 4 "very goood"....
My question is, how can I display these records (point 5 "excelent"..) without having to go and manually replace quotes (" w/ the special character (&qut) in the DB?