Notice: Undefined variable: snow_conv in /home/weather/public_html/snow_this_month.php on line 20

Warning: array_walk() [function.array-walk]: Unable to call CtoI() - function does not exist in /home/weather/public_html/snow_this_month.php on line 21

Notice: Undefined variable: snow_unit in /home/weather/public_html/snow_this_month.php on line 41

Notice: Undefined variable: snow_format in /home/weather/public_html/snow_this_month.php on line 47

Notice: Undefined variable: snow_format in /home/weather/public_html/snow_this_month.php on line 59

Notice: Undefined variable: snow_col in /home/weather/public_html/snow_this_month.php on line 60

Notice: Undefined variable: snow_col in /home/weather/public_html/snow_this_month.php on line 61

Notice: Undefined offset: 2 in /home/weather/public_html/jpgraph-3.0.5/src/jpgraph_rgb.inc.php on line 498

Notice: Undefined offset: 2 in /home/weather/public_html/jpgraph-3.0.5/src/jpgraph_rgb.inc.php on line 498

Notice: Undefined offset: 3 in /home/weather/public_html/jpgraph-3.0.5/src/jpgraph_rgb.inc.php on line 499

Notice: Undefined offset: 3 in /home/weather/public_html/jpgraph-3.0.5/src/jpgraph_rgb.inc.php on line 499

Notice: Undefined offset: 4 in /home/weather/public_html/jpgraph-3.0.5/src/jpgraph_rgb.inc.php on line 500

Notice: Undefined offset: 4 in /home/weather/public_html/jpgraph-3.0.5/src/jpgraph_rgb.inc.php on line 500

Notice: Undefined offset: 2 in /home/weather/public_html/jpgraph-3.0.5/src/jpgraph_rgb.inc.php on line 498

Notice: Undefined offset: 2 in /home/weather/public_html/jpgraph-3.0.5/src/jpgraph_rgb.inc.php on line 498

Notice: Undefined offset: 3 in /home/weather/public_html/jpgraph-3.0.5/src/jpgraph_rgb.inc.php on line 499

Notice: Undefined offset: 3 in /home/weather/public_html/jpgraph-3.0.5/src/jpgraph_rgb.inc.php on line 499

Notice: Undefined offset: 4 in /home/weather/public_html/jpgraph-3.0.5/src/jpgraph_rgb.inc.php on line 500

Notice: Undefined offset: 4 in /home/weather/public_html/jpgraph-3.0.5/src/jpgraph_rgb.inc.php on line 500
JpGraph Error: HTTP headers have already been sent.
Caused by output from file snow_this_month.php at line 20.
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".