Gossamer Forum
Home : Products : DBMan : Installation :

wrap in a db field off?

Quote Reply
wrap in a db field off?
Is it possible to have the text that is put into an textarea in a database field to be displayed as it was put in?

So without wrapping the imput?
Quote Reply
Re: wrap in a db field off? In reply to
One thing I suggest is using:

Code:
wrap=physical/virtual

You can also try adding the following codes to the top of your sub html_record and/or sub html_record_long:

Code:
$rec{'FieldName'} =~ s/\n//g;

after the following codes:

Code:
($db_auto_generate and print &build_html_record(%rec) and return);

Change FieldName to the name of your field.

Regards,

------------------
Eliot Lee
Anthro TECH,L.L.C
www.anthrotech.com
----------------------


Quote Reply
Re: wrap in a db field off? In reply to
Thanx for your help.

It doesn't do the trick, the field keeps getting wrapped.