WxSim Temperature Forecast Comparison Script

I’m testing this with am and pm.
notice, when you are running the latest version(1.1), you have to call the script with the allowed config-files.
in forecast-compare-include is the folowing(whitch you can edit)

$allowed = array (                 // You can add additional configuration file names here
  'am' => 'fc-configAM.php',
  'pm' => 'fc-configPM.php'
);

so, I’m calling the script like this:

forecast-compare-include.php?log&config=am
forecast-config-compare.php?log&config=pm

if you don’t do it like this, you end up using fc-config.php, and not with the configurations you want.

you can call the different logs with:

		$_REQUEST['config'] = 'pm';
		$_REQUEST['lang'] = 'en';	
		include("forecast-compare-include.php");