<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
<font size="-1"><font face="Verdana">well my english its very poor but
i wrote some ideas about the progress meters.<br>
thinking about i found to tweak a little bit this progress meters to
generate charts<br>
<br>
the code:<br>
<br>
&lt;progress type="bar" name="loaderA" action="page_to_load.php"
direction="horizontal" maxvalue="100" minvalue="0" /&gt;<br>
<br>
type:<br>
&nbsp;&nbsp;&nbsp; bar<br>
&nbsp;&nbsp;&nbsp; status-bar<br>
&nbsp;&nbsp;&nbsp; numeric<br>
&nbsp;&nbsp;&nbsp; numeric-bar<br>
&nbsp;&nbsp;&nbsp; numeric-status<br>
&nbsp;&nbsp;&nbsp; <br>
name:<br>
&nbsp;&nbsp;&nbsp; item name reference<br>
&nbsp;&nbsp;&nbsp; <br>
action:<br>
&nbsp;&nbsp;&nbsp; page, file, behavior to attach the progress meter<br>
&nbsp;&nbsp;&nbsp; <br>
direction:<br>
&nbsp;&nbsp;&nbsp; horizontal<br>
&nbsp;&nbsp;&nbsp; vertical<br>
&nbsp;&nbsp;&nbsp; <br>
maxvalue<br>
&nbsp;&nbsp;&nbsp; maximun value<br>
<br>
min value<br>
&nbsp;&nbsp;&nbsp; minimun value<br>
<br>
the pages can handle some type of meta tag or server header response
attached to the name of the progress meter &nbsp;&nbsp;&nbsp; <br>
&nbsp;&nbsp;&nbsp; <br>
&lt;meta progress="loaderA" value="50" /&gt;<br>
<br>
with dynamic lenguajes can handle like this:<br>
<br>
&lt;?php<br>
header("progress:loaderA:50");<br>
?&gt;<br>
</font></font><br>
</body>
</html>