Using GD you can graph any instrument you want, I'd use a fixed gif/jpg background
and draw the needles/bars/whatever over it
using GD (see articles about dynamic image
generation in this site or the GD documentation)
But that was already said by John, what
I wanted to add is that you would have
to deal with the refreshing problem since
you will like the instrument to be refreshed,
if so just add a
<meta http-equiv="Refresh" content="10">
This tells the browser to autorefresh the page each 10 seconds you can use 1 second if you like. For finer granularity you can use
JavaScript setInterval function from the
window object.
You CAN'T refresh the instrument from the server whenever you want. There're some
tricky avoidance plays to deal with this problem but it seems to me that a META
refresh tag will do the work.
Luis.