Hi,
  I am building a application in which i need to
display live stock market prices with out the user
presing the refresh button. Its similer to live game
scores. 

I have tryed using something like this simple script :

#!/usr/bin/perl
chop ($current_date = `/bin/date`);
print "Content-type: text/html", "\n\n";
print "<HTML>", "\n";
print "<HEAD><TITLE>Effects of Browser
Caching</TITLE></HEAD>", "\n";
print "<META HTTP-EQUIV='Refresh' CONTENT=1>";
print "<BODY><H1>", $current_date, "</H1>", "\n";
print "</BODY></HTML>", "\n";

This refreshes the whole page 
i need to refresh only some fields not the whole page 
I can use floating frames for this but i dont think
its good solution 

Is there any thing in mod_perl to address this issue 
I mean if u feel thre is some other better solution
please do direct me to the right place. I am quite a
new commer to the perl world. 

Thanks in advance,
Parvez



__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

Reply via email to