I try to copy and paste TAB delimited list into html text area, then save it to database, however when I retrieve it from DB, all TAB space are gone, does anyone can give me advice is there a way to keep these TAB?
Thanks in advance.
test test test <----regular space
==============
test test test <----one TAB space
test test test <----two TAB spaces
when I retrieve from DB, it shows:
test test test
==============
test test test
test test test
P.S. The DB field is TEXT datatype (I use MSSQL)