On Tue, Mar 24, 2009 at 00:01, Rajini Naidu <rajinid...@gmail.com> wrote:
> Hi,
>
> Context :
>
> I am working on displaying load graph for all the days.
>
>
>
> I require a perl module which displays,
>
> all the days of the week and when I click
>
> On the particular day, it should go to the
>
> particular load graph.
>
> Any help is much appreciated.
>
> -Rajini
>

I am making the assumption that you want a web page.  I am also making
the assumption that you have graphs as image files.  You don't need
any Perl for the display.  You just need some HTML like

<html>
    <head>
        <title>daily load</title>
    </head>
    <body>
        <ul>
            <li><a href="sunday.jpg">Sunday</a></li>
            <li><a href="monday.jpg">Monday</a></li>
            <li><a href="tuesday.jpg">Tuesday</a></li>
            <li><a href="wednesday.jpg">Wednesday</a></li>
            <li><a href="thursday.jpg">Thursday</a></li>
            <li><a href="friday.jpg">Friday</a></li>
            <li><a href="saturday.jpg">Saturday</a></li>
        </ul>
    </body>
</html>

Then make sure that the image files get updated (with Perl I would assume).

-- 
Chas. Owens
wonkden.net
The most important skill a programmer can have is the ability to read.

-- 
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to