in reply to Re: @forminputs annoying error
in thread @forminputs annoying error

yup i also had problems with that but it's true that you'll need to put "\" before the @ sign when doing $var = "mail@mydomain.com"; and PERL also complaints when doing this.... print<<"HTML"; HTML which is not supposed to be an error.... and the solution is to put "\" escape char? before the @mydomain.com. really weird but this really teached me a lesson on using escape characters.

Replies are listed 'Best First'.
RE: RE: Re: @forminputs annoying error
by GridMonk (Acolyte) on May 10, 2000 at 06:59 UTC
    Try using no quotes around the HTML.
    Just print << HTML;

    .... ?