How to setup jpgraphs and wxgraphs

Stuart,
Thanks for checking. I’ve replaced the ""s with "/"s but unfortunately that made no difference.
It’s really weird that most of the graphs seem to work, but a few don’t.
I can’t think what I’ve done wrong. If I try to directly access one of the php files that don’t work (in IE6) I get:

Notice: Undefined variable: datat in e:\domains\k\kingsteignton-weather.co.uk\user\htdocs\WXGraphs\winddir_1hr.php on line 81
JpGraph Error: HTTP headers have already been sent.
Caused by output from file winddir_1hr.php at line 81.
Explanation:
HTTP headers have already been sent back to the browser indicating the data as text before the library got a chance to send it’s image HTTP header to this browser. This makes it impossible for the library to send back image data to the browser (since that would be interpretated as text by the browser and show up as junk text).
Most likely you have some text in your script before the call to Graph::Stroke(). If this texts gets sent back to the browser the browser will assume that all data is plain text. Look for any text, even spaces and newlines, that might have been sent back to the browser.

For example it is a common mistake to leave a blank line before the opening “<?php”.

I don’t know what that means, but I haven’t fiddled with any of the files.