0) { foreach ($checkgroup as $key => $element) if ($element==-1) $query0 .= $key . " as '" . $alias[$key] . "' " . ", "; //-------------------------------------------------- //$query0 .= " TIMEDIFF(fRunStop, fRunStart), "; // Only available in MySQL>4.1.1 // $query0 .= "SUM(if(TIME_TO_SEC(fRunStop)-TIME_TO_SEC(fRunStart)<0, " . // "TIME_TO_SEC(fRunStop)-TIME_TO_SEC(fRunStart)+24*60*60, " . // "TIME_TO_SEC(fRunStop)-TIME_TO_SEC(fRunStart)))/3600 as '" . $alias["SUM(fRunTime)/3600"] . "', "; //-------------------------------------------------- $query0 .= " SUM(fNumEvents) as '" . $alias["SUM(fNumEvents)"] . "', "; // $query0 .= " Min(fZenithDistance) as '" . $alias["Min(fZenithDistance)"] . "', "; // $query0 .= " Max(fZenithDistance) as '" . $alias["Max(fZenithDistance)"] . "', "; $query0 .= " COUNT(*) as '# Runs' "; } else { $query0 .= " fRunNumber as 'Run#' "; foreach ($_GET as $key => $element) if ($_GET[$key]=="On") if (empty($checkwhere[$key]) || $checkwhere[$key]==0) $query0 .= ", " . $key . " as '" . $alias[$key] . "' "; } $query0 .= " FROM MCRunData "; foreach ($_GET as $key => $element) if (($_GET[$key]=="On" || $groups>0))// && !empty($joins[$key])) $query0 .= GetJoin($fromtable, $key); foreach ($checkwhere as $key => $element) { if (empty($element) || $element<=0) continue; if (strpos($query0, " WHERE ")==FALSE) $query0 .= " WHERE "; else if ($element!=-1) if (strrpos($query0, " AND ")!=strlen($query0)-5)// this if clause doesn't work $query0 .= " AND "; if ($element!=-1) $query0 .= GetCheck($fromtable, $key) . "=" . $element; } if (strpos($query0, " WHERE ")==FALSE) $query0 .= " WHERE "; else $query0 .= " AND "; if (!empty($_GET["fRunMin"]) && !empty($_GET["fRunMax"])) $query0 .= "fRunNumber BETWEEN " . $_GET["fRunMin"] . " AND " . $_GET["fRunMax"] . " "; /* if (!empty($_GET["fSequenceNo"])) { if (strpos(strrev($query0), " DNA ")!=0) $query0 .= " AND "; $query0 .= " fSequenceFirst = '" . $_GET["fSequenceNo"] . "' "; } */ if ($groups>0) { $query0 .= " GROUP BY "; $num = $groups; foreach ($checkgroup as $key => $element) if ($element==-1) { $query0 .= GetCheck($fromtable, $key); if ($num-->1) $query0 .= ", "; } } if (!empty($_GET["fSortBy"])) { $query0 .= " ORDER BY " . substr($_GET["fSortBy"], 0, -1) . " "; if (substr($_GET["fSortBy"], -1)=="-") $query0 .= "DESC"; } if (empty($_GET["fNumStart"])) $_GET["fNumStart"]=0; if (empty($_GET["fSendTxt"])) $query0 .= " LIMIT " . $_GET["fNumStart"] . ", " . $_GET["fNumResults"]; return $query0; } function InitGet($_GET) { /* if (empty($_GET["fRawFileKEY"])) $_GET["fRawFileKEY"]="Off"; */ // Find out whether it is the first call to the php script $first = empty($_GET["fRunMin"]) && empty($_GET["fRunMax"]); if (empty($_GET["fNumResults"])) $_GET["fNumResults"]="20"; if (empty($_GET["fNumEvents"])) $_GET["fNumEvents"]=$first?"On":""; if (empty($_GET["fEMin"])) $_GET["fEMin"]=$first?"On":""; if (empty($_GET["fEMax"])) $_GET["fEMax"]=$first?"On":""; if (empty($_GET["fParticleTypeName"])) $_GET["fParticleTypeName"]="Off"; } function PrintForm($_GET, $host, $user, $pw, $db) { printf("