0) { foreach ($checkgroup as $key => $element) if ($element==-1) $query0 .= $key . " as '" . $alias[$key] . "' " . ", "; $query0 .= " COUNT(*) as '# Runs' "; } else { $query0 .= " fTimeStamp as 'Time' "; foreach ($_GET as $key => $element) if ($_GET[$key]=="On") if (empty($checkwhere[$key]) || $checkwhere[$key]==0) $query0 .= ", " . $key . " as '" . $alias[$key] . "' "; } $query0 .= " FROM " . $fromtable; 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["fStartDate"])) { $startdate=substr($_GET["fStartDate"], 0, 10); if ($startdate=="0000-00-00") $query0 .=" fTimestamp >= '" . $startdate . " 00:00:00' "; else $query0 .= " fTimestamp >= ADDDATE('" . $startdate . " 13:00:00', INTERVAL -1 DAY) "; } if (!empty($_GET["fStopDate"])) { // if (strpos(strrev($query0), " DNA ")!=0) // $query0 .= " AND "; $stopdate=substr($_GET["fStopDate"], 0, 10); $query0 .= " AND fTimestamp < '" . $stopdate . " 13:00:00' "; } 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) { // 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["fTimestamp"])) $_GET["fTimestamp"]=$first?"On":""; if (empty($_GET["fExposure"])) $_GET["fExposure"]=$first?"On":""; if (empty($_GET["fSkyLevel"])) $_GET["fSkyLevel"]=$first?"On":""; if (empty($_GET["fFWHM"])) $_GET["fFWHM"]=$first?"On":""; if (empty($_GET["fApertureRadius"])) $_GET["fApertureRadius"]=$first?"On":""; if (empty($_GET["fInstrumentalMag"])) $_GET["fInstrumentalMag"]=$first?"On":""; if (empty($_GET["fInstrumentalMagErr"])) $_GET["fInstrumentalMagErr"]=$first?"On":""; if (empty($_GET["fFitsFileName"])) $_GET["fFitsFileName"]="Off"; if (empty($_GET["fObjectName"])) $_GET["fObjectName"]=$first?"On":""; if (empty($_GET["fStatusName"])) $_GET["fStatusName"]="Off"; if (empty($_GET["fBandName"])) $_GET["fBandName"]=$first?"On":""; if (empty($_GET["fTelescopeName"])) $_GET["fTelescopeName"]=$first?"On":""; // if (empty($_GET["fRunStop"])) // $_GET["fRunStop"]="Off"; } function PrintForm($_GET, $host, $user, $pw, $db) { printf("
Hello {$_SERVER['PHP_AUTH_USER']}.
"; // echo "You entered {$_SERVER['PHP_AUTH_PW']} as your password.
"; // printf("pw: %s", crypt($_SERVER['PHP_AUTH_PW'])); if (crypt($_SERVER['PHP_AUTH_PW'], $sitepw)!=$sitepw || $_SERVER['PHP_AUTH_USER']!=$siteuser) { printf("