14 lines
355 B
PHP
Executable File
14 lines
355 B
PHP
Executable File
<?php
|
|
//header("Content-type: image/png");
|
|
|
|
$chartType = isset ( $_GET['chart']) ? $_GET['chart'] : '1' ;
|
|
|
|
// use the chart class to build the chart:
|
|
require_once ( "class.pmosCommunity.php" );
|
|
$chartsObj = new pmosCommunityClass();
|
|
|
|
if ( method_exists( $chartsObj, $chartType) ) {
|
|
$chartsObj->{$chartType}();
|
|
die;
|
|
}
|
|
|