Ignore:
Timestamp:
02/28/06 20:23:38 (19 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/datacenter/db/querycal.php

    r7507 r7546  
    102102    }
    103103
    104     function PrintForm($_GET, $db)
     104    function PrintForm($_GET, $host, $user, $pw, $db)
    105105    {
    106106        printf("<center>\n");
     
    138138
    139139        if (empty($_GET["fRunMin"]))
    140             $min = GetMin("fSequenceFirst", "Sequences", $db);
     140            $min = GetMin("fSequenceFirst", "Sequences", $host, $user, $pw, $db);
    141141        else
    142142            $min = $_GET["fRunMin"];
    143143
    144144        if (empty($_GET["fRunMax"]))
    145             $max = GetMax("fSequenceFirst", "Sequences", $db);
     145            $max = GetMax("fSequenceFirst", "Sequences", $host, $user, $pw, $db);
    146146        else
    147147            $max = $_GET["fRunMax"];
     
    182182    }
    183183
    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);
    187187        if ($db_id==FALSE)
    188188        {
     
    223223        header("Content-Disposition: attachment; filename=query-result.txt");
    224224
    225         PrintPage("0", $db, $alias, $rightalign, $checkwhere);
     225        PrintPage("0", $host, $user, $pw, $db, $alias, $rightalign, $checkwhere);
    226226    }
    227227    else
     
    232232
    233233        InitGet($_GET);
    234         PrintForm($_GET, $db);
     234        PrintForm($_GET, $host, $user, $pw, $db);
    235235
    236236        if ($environment==0)
    237237            printf("No query submitted yet.<BR>");
    238238        else
    239             PrintPage("1", $db, $alias, $rightalign, $checkwhere);
     239            PrintPage("1", $host, $user, $pw, $db, $alias, $rightalign, $checkwhere);
    240240
    241241        echo (file_get_contents("index-footer.html"));
Note: See TracChangeset for help on using the changeset viewer.