blob: 4c69de40db7b4e5185b13f97731d8ca4c1ee78b4 [file] [log] [blame]
<?php
if(!isset($HTTP_GET_VARS['measure'])){
die("ERROR: Please select a checkbox at the top of a column to create a graph.\n");
}
$measure=$HTTP_GET_VARS['measure'];
if(sizeof($measure)>1){
include("multiplemachinegraph.php");
}
else{
include("individualmachinegraph.php");
}
?>