I need to display something like a status bar when pulling information from a data base that takes some time to perform. This is easily accomplished with a table code like:
print "<table width = 100% border = \"1\"><hr><td width = " . $size . "%>A</td><td>A</td></hr></table>";
but how do I get this pushed in real time? At one time Netscape 1.1 had a server-push technology that worked only with Netscape. What is today's recommended method for pushing a counter or status bar out to a webpage in real time from an application such as Perl?
print "<table width = 100% border = \"1\"><hr><td width = " . $size . "%>A</td><td>A</td></hr></table>";
but how do I get this pushed in real time? At one time Netscape 1.1 had a server-push technology that worked only with Netscape. What is today's recommended method for pushing a counter or status bar out to a webpage in real time from an application such as Perl?