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/ganymed.php

    r7520 r7546  
    4242    }
    4343
    44     function PrintForm($_GET, $db)
     44    function PrintForm($_GET, $host, $user, $pw, $db)
    4545    {
    4646        printf("<center>\n");
     
    5454        if (empty($_GET["fRunMin"]))
    5555            $min = "100";
    56 //            $min = GetMin("fDataSetNumber", "DataSets", $db);
     56//            $min = GetMin("fDataSetNumber", "DataSets", $host, $user, $pw, $db);
    5757        else
    5858            $min = $_GET["fRunMin"];
    5959
    6060        if (empty($_GET["fRunMax"]))
    61             $max = GetMax("fDataSetNumber", "DataSets", $db);
     61            $max = GetMax("fDataSetNumber", "DataSets", $host, $user, $pw, $db);
    6262        else
    6363            $max = $_GET["fRunMax"];
     
    139139*/
    140140
    141     function PrintDataSetInfo($result0, $db_id, $db)
     141    function PrintDataSetInfo($result0)
    142142    {
    143143        $numres = mysql_num_rows($result0);
     
    219219    }
    220220
    221     function PrintPage($html, $db)
    222     {
    223         $db_id = mysql_connect("hercules.astro.uni-wuerzburg.de", "MAGIC", "d99swMT!");
     221    function PrintPage($html, $host, $user, $pw, $db)
     222    {
     223        $db_id = mysql_connect($host, $user, $pw);
    224224        if ($db_id==FALSE)
    225225        {
     
    236236        {
    237237            if ($html=="1" || $html=="2")
    238                 PrintDataSetInfo($result0, $db_id, $db);
     238                PrintDataSetInfo($result0);
    239239            else
    240240                PrintText($result0);
     
    259259        header("Content-Disposition: attachment; filename=query-result.txt");
    260260
    261         PrintPage("0", $db);
     261        PrintPage("0", $host, $user, $pw, $db);
    262262    }
    263263    else
     
    269269        InitGet($_GET);
    270270        if (empty($_GET["fPrintTable"]))
    271             PrintForm($_GET, $db);
     271            PrintForm($_GET, $host, $user, $pw, $db);
    272272
    273273        if ($environment==0)
     
    276276        {
    277277            if (empty($_GET["fPrintTable"]))
    278                 PrintPage("1", $db);
     278                PrintPage("1", $host, $user, $pw, $db);
    279279            else
    280                 PrintPage("2", $db);
     280                PrintPage("2", $host, $user, $pw, $db);
    281281        }
    282282
Note: See TracChangeset for help on using the changeset viewer.