I get this error when I click on the link to the flight/:
Warning: Invalid argument supplied for foreach() in /home/woodsdom/public_html/EPA/lib/skins/epa/schedule_details.tpl on line 24
Linke 24 is this:
foreach($scheddata as $month=>$count)
or the full section for you:
<?php
$data = array();
$labels = array();
foreach($scheddata as $month=>$count)
{
$data = $count;
$labels = $month;
}
$chart = new ChartGraph(‘gchart’, ‘ls’, 600, 150);
$chart->AddData($data, $labels);
echo ‘<img align=“center” src="’.$chart->GenerateGraph().‘" />’;
?>