in reply to Re: Re: textareas, form scripts, line breaks etc
in thread textareas, form scripts, line breaks etc

This is a html problem, not a perl problem. The HTML is there, it's just invalid.

In particular, you need double-qoutes if your form values are allowed to include single-quotes:

VALUE='I'm testing lynx..'
needs to become:
VALUE="I'm testing lynx"

  • Comment on Re: Re: Re: textareas, form scripts, line breaks etc