Gossamer Forum
Home : Products : Others : Gossamer Community :

Re: [Matthias70] line break in textfield

Quote Reply
Re: [Matthias70] line break in textfield In reply to
Ah sorry, I know what you mean now

You just need to run it through a simple global to convert \n to <Br />

convert_nl_to_br
Code:
sub {
my $tmp = $_[0];
$tmp =~ s/\n/<br>/sg;
return \$tmp;
}

..call with:

<%convert_nl_to_br($prof_Field)%>

Should do the trick

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Subject Author Views Date
Thread; hot thread line break in textfield Matthias70 10901 Nov 17, 2010, 3:04 PM
Thread; hot thread Re: [Matthias70] line break in textfield
Andy 10693 Nov 18, 2010, 10:09 AM
Thread; hot thread Re: [Andy] line break in textfield
Matthias70 10728 Nov 18, 2010, 10:33 AM
Post; hot thread Re: [Matthias70] line break in textfield
Andy 10700 Nov 18, 2010, 10:35 AM
Thread; hot thread Re: [Matthias70] line break in textfield
Andy 10700 Nov 18, 2010, 10:11 AM
Thread; hot thread Re: [Andy] line break in textfield
Matthias70 10675 Nov 18, 2010, 11:01 AM
Thread; hot thread Re: [Matthias70] line break in textfield
Andy 10676 Nov 18, 2010, 11:34 AM
Thread; hot thread Re: [Andy] line break in textfield
Matthias70 10709 Nov 18, 2010, 11:39 AM
Thread; hot thread Re: [Matthias70] line break in textfield
Andy 10677 Nov 18, 2010, 11:41 AM
Thread; hot thread Re: [Andy] line break in textfield
Matthias70 10684 Nov 18, 2010, 11:48 AM
Post; hot thread Re: [Matthias70] line break in textfield
Andy 10689 Nov 18, 2010, 11:48 AM