0) { foreach ($checkstatusgroup as $key => $element) if ($element==-1) $query0 .= " (if(IsNull(" . $key . "), if(isnull(fStartTime), 'not done', if(isnull(fFailedTime),if(isnull(" . $needs[$key] . "),'not done',if(date_sub(Now(),interval 12 hour) < fStartTime,'running','crashed')),if(isnull(" . $needs[$key] . "),'not done','failed'))) ,if(" . $key . "='1970-01-01 00:00:00','dont do','done'))) as '" . $alias[$key] . "', "; // $query0 .= " (if(IsNull(" . $key . "), 'not done' ,if(" . $key . "='1970-01-01 00:00:00','dont do','done'))) as '" . $alias[$key] . "', "; $query0 .= " count(*) as '# Sequ'"; } else { if (!empty($_GET["fSendTxt"])) $query0 .= " fSequenceFirst "; else $query0 .= " CONCAT('', fSequenceFirst, '') "; $query0 .= " as 'Sequence#' "; foreach ($_GET as $key => $element) if ($_GET[$key]=="On") if (empty($checkwhere[$key]) || $checkwhere[$key]==0) $query0 .= ", " . $key . " as '" . $alias[$key] . "' "; } $query0 .= " FROM SequenceProcessStatus "; if (strpos($query0, " WHERE ")==FALSE) $query0 .= " WHERE "; else $query0 .= " AND "; $query0 .= StatusQuery("fSequenceFileWritten", $needs); $query0 .= StatusQuery("fAllFilesAvail", $needs); $query0 .= StatusQuery("fCallisto", $needs); $query0 .= StatusQuery("fFillCallisto", $needs); $query0 .= StatusQuery("fStar", $needs); $query0 .= StatusQuery("fFillStar", $needs); $query0 .= "fSequenceFirst BETWEEN " . $_GET["fRunMin"] . " AND " . $_GET["fRunMax"] . " "; if ($statusgroups>0) { $query0 .= " GROUP BY "; $num = $statusgroups; foreach ($checkstatusgroup as $key => $element) if ($element==-1) { $query0 .= $alias[$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["fSortBy"]) && $statusgroups==0) $query0 .= "ORDER BY fSequenceFirst ASC "; if (empty($_GET["fNumStart"])) $_GET["fNumStart"]=0; if (empty($_GET["fSendTxt"])) $query0 .= " LIMIT " . $_GET["fNumStart"] . ", " . $_GET["fNumResults"]; return $query0; } function InitGet($_GET) { // 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["fSequenceFileWritten"])) $_GET["fSequenceFileWritten"]=$first?"On":""; if (empty($_GET["fAllFilesAvail"])) $_GET["fAllFilesAvail"]=$first?"On":""; if (empty($_GET["fCallisto"])) $_GET["fCallisto"]=$first?"On":""; if (empty($_GET["fStar"])) $_GET["fStar"]=$first?"On":""; if (empty($_GET["fFillCallisto"])) $_GET["fFillCallisto"]="Off"; if (empty($_GET["fFillStar"])) $_GET["fFillStar"]="Off"; } function PrintForm($_GET, $host, $user, $pw, $db) { printf("