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

    r7507 r7546  
    7474    }
    7575
    76     function PrintForm($_GET, $db)
     76    function PrintForm($_GET, $host, $user, $pw, $db)
    7777    {
    7878        printf("<center>\n");
     
    8686
    8787        if (empty($_GET["fRunMin"]))
    88             $min = GetMin("fSequenceFirst", "Sequences", $db);
     88            $min = GetMin("fSequenceFirst", "Sequences", $host, $user, $pw, $db);
    8989        else
    9090            $min = $_GET["fRunMin"];
    9191
    9292        if (empty($_GET["fRunMax"]))
    93             $max = GetMax("fSequenceFirst", "Sequences", $db);
     93            $max = GetMax("fSequenceFirst", "Sequences", $host, $user, $pw, $db);
    9494        else
    9595            $max = $_GET["fRunMax"];
     
    510510    }
    511511
    512     function PrintPage($html, $db)
    513     {
    514         $db_id = mysql_connect("hercules.astro.uni-wuerzburg.de", "MAGIC", "d99swMT!");
     512    function PrintPage($html, $host, $user, $pw, $db)
     513    {
     514        $db_id = mysql_connect($host, $user, $pw);
    515515        if ($db_id==FALSE)
    516516        {
     
    550550        header("Content-Disposition: attachment; filename=query-result.txt");
    551551
    552         PrintPage("0", $db);
     552        PrintPage("0", $host, $user, $pw, $db);
    553553    }
    554554    else
     
    560560        InitGet($_GET);
    561561        if (empty($_GET["fPrintTable"]))
    562             PrintForm($_GET, $db);
     562            PrintForm($_GET, $host, $user, $pw, $db);
    563563
    564564        if ($environment==0)
     
    567567        {
    568568            if (empty($_GET["fPrintTable"]))
    569                 PrintPage("1", $db);
     569                PrintPage("1", $host, $user, $pw, $db);
    570570            else
    571                 PrintPage("2", $db);
     571                PrintPage("2", $host, $user, $pw, $db);
    572572        }
    573573
Note: See TracChangeset for help on using the changeset viewer.