Changeset 7546 for trunk/MagicSoft/Mars/datacenter/db/querycal.php
- Timestamp:
- 02/28/06 20:23:38 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/datacenter/db/querycal.php
r7507 r7546 102 102 } 103 103 104 function PrintForm($_GET, $ db)104 function PrintForm($_GET, $host, $user, $pw, $db) 105 105 { 106 106 printf("<center>\n"); … … 138 138 139 139 if (empty($_GET["fRunMin"])) 140 $min = GetMin("fSequenceFirst", "Sequences", $ db);140 $min = GetMin("fSequenceFirst", "Sequences", $host, $user, $pw, $db); 141 141 else 142 142 $min = $_GET["fRunMin"]; 143 143 144 144 if (empty($_GET["fRunMax"])) 145 $max = GetMax("fSequenceFirst", "Sequences", $ db);145 $max = GetMax("fSequenceFirst", "Sequences", $host, $user, $pw, $db); 146 146 else 147 147 $max = $_GET["fRunMax"]; … … 182 182 } 183 183 184 function PrintPage($html, $ db, $alias, $rightalign, $checkwhere)185 { 186 $db_id = mysql_connect( "hercules.astro.uni-wuerzburg.de", "MAGIC", "d99swMT!");184 function PrintPage($html, $host, $user, $pw, $db, $alias, $rightalign, $checkwhere) 185 { 186 $db_id = mysql_connect($host, $user, $pw); 187 187 if ($db_id==FALSE) 188 188 { … … 223 223 header("Content-Disposition: attachment; filename=query-result.txt"); 224 224 225 PrintPage("0", $ db, $alias, $rightalign, $checkwhere);225 PrintPage("0", $host, $user, $pw, $db, $alias, $rightalign, $checkwhere); 226 226 } 227 227 else … … 232 232 233 233 InitGet($_GET); 234 PrintForm($_GET, $ db);234 PrintForm($_GET, $host, $user, $pw, $db); 235 235 236 236 if ($environment==0) 237 237 printf("No query submitted yet.<BR>"); 238 238 else 239 PrintPage("1", $ db, $alias, $rightalign, $checkwhere);239 PrintPage("1", $host, $user, $pw, $db, $alias, $rightalign, $checkwhere); 240 240 241 241 echo (file_get_contents("index-footer.html"));
Note:
See TracChangeset
for help on using the changeset viewer.