---------- Forwarded message ---------- From: Rajini Naidu <rajinid...@gmail.com> Date: Tue, Mar 24, 2009 at 10:12 AM Subject: Re: Require help in perl To: "Chas. Owens" <chas.ow...@gmail.com>
Hi Chas, Thanks for the reply. Please find my answers inlined. > > > > 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. > > > > I am making the assumption that you want a web page. > Yes I have a web page. > > I am also making the assumption that you have graphs as image files. Yes , I have used perl module Graph for displaying images. > You don't need any Perl for the display. I require the days to be displayed dynamically. Eg for this Week, it should display as , 22 23 24 25 26 27 28 and when clicked on that day, it should go to say Mar.22.img......... The above format should be changing according to that week. -Rajini 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.