Hi all, great forum btw.
I have a textarea input box - when I fill it in as, say:
my perl script receives it as an url encoded string such as
This is fine but I need to write it as one record into a mysql database and keep the html formatting, ie.
Have checked the archives but no joy. Am also a bit new to this Perl malarky
Cheers,
Matt
I have a textarea input box - when I fill it in as, say:
Code:
line 1
line 2
line 3
my perl script receives it as an url encoded string such as
Code:
line+1%0D%0A%0D%0Aline+2%0D%0A%0D%0Aline+3
This is fine but I need to write it as one record into a mysql database and keep the html formatting, ie.
Code:
line1<br><br>line2<br><br>line3
Have checked the archives but no joy. Am also a bit new to this Perl malarky
Cheers,
Matt