function charts ($day=null) {
echo "<div id='maingraph'><img src='graph2wks.php?day=$day' alt='SVG Graphics Graphing Image' />";
graph2wks.php has the following:
header("content-type:image/svg");
$my_graph->renderDirect( 920, 300, 'line_chart.svg' );
Looks great in FF, as it supports SVG. I've seen claims of support for SVG in late-model MSIE browsers, but I can't seem to get it working. Do I need another strategy?