damianpadden has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's minimum standard of quality and will not be displayed.

Replies are listed 'Best First'.
Re: Help with some HTML coding
by davorg (Chancellor) on Jul 06, 2006 at 08:56 UTC

    The best advice is to separate your processing from your presentation by using a templating system. I recommend the Template Toolkit, but HTML::Template and HTML::Mason are also popular. You might even consider using a full MVC framework like Catalyst.

    Anyway separating processing from presentation makes it easier to work on your HTML as separate from your Perl code. you can then take any HTML questions that you have to an HTML forum :-)

    --
    <http://dave.org.uk>

    "The first rule of Perl club is you do not talk about Perl club."
    -- Chip Salzenberg

Re: Help with some HTML coding
by marto (Cardinal) on Jul 06, 2006 at 08:51 UTC
    Hi damianpadden,

    Could you be more specific about problems you are having? Perhaps you should look at HTML::Template. If this is not any help please post the code you have, the output of the code and a detailed description of what you are trying to do.

    Hope this helps.

    Martin
Re: Help with some HTML coding
by shmem (Chancellor) on Jul 06, 2006 at 08:53 UTC