Ignore:
Timestamp:
12/01/08 12:13:54 (16 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/datacenter/db
Files:
3 edited

Legend:

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

    r9159 r9184  
    519519        {
    520520            if (empty($rightalign[$key]))
    521                 printf("  <td align='left'>");
     521                printf("  <td align='left' valign='top'>");
    522522            else
    523                 printf("  <td align='right'>");
     523                printf("  <td align='right' valign='top'>");
    524524
    525525            $colour='#000000';
  • trunk/MagicSoft/Mars/datacenter/db/menu.php

    r9168 r9184  
    595595//    printf("<p>");
    596596    if (strchr($_SERVER["REQUEST_URI"], '?')!=FALSE)
     597    {
    597598        printf("<input class='Width' type='button' value='Get .txt' onClick='self.location.href=\"%s&amp;fSendTxt=1\"'>&nbsp;&nbsp;&nbsp;\n", htmlspecialchars($_SERVER["REQUEST_URI"]));
    598     if (strchr($_SERVER["REQUEST_URI"], '?')!=FALSE)
    599     {
    600599        printf("<input class='Width' type='button' value='Print' onClick='self.location.href=\"%s&amp;fPrintTable=1\"'>&nbsp;&nbsp;&nbsp;\n", htmlspecialchars($_SERVER["REQUEST_URI"]));
    601600        printf("MySqlQuery: <img id='showquerybutton' src='../plus.png' alt='+' onClick='showhide(\"showquery\")'>\n");
  • trunk/MagicSoft/Mars/datacenter/db/queryrbk.php

    r8180 r9184  
    2323        printf("%s\">&nbsp;&nbsp;&nbsp;\n", $_GET["fNight"]);
    2424
     25
    2526        printf("<input class='Width' type='submit' value='Query Table'>&nbsp;&nbsp;&nbsp;\n");
    2627        printf("<input class='Width' type='button' value='Reset' onClick='self.location.href=\"queryrbk.php\"'>&nbsp;&nbsp;&nbsp;\n");
    2728        if (strchr($_SERVER["REQUEST_URI"], '?')!=FALSE)
     29        {
    2830            printf("<input class='Width' type='button' value='Get .txt' onClick='self.location.href=\"%s&fSendTxt=1\"'>&nbsp;&nbsp;&nbsp;\n", $_SERVER["REQUEST_URI"]);
     31            printf("<input class='Width' type='button' value='Print' onClick='self.location.href=\"%s&amp;fPrintTable=1\"'>&nbsp;&nbsp;&nbsp;\n", htmlspecialchars($_SERVER["REQUEST_URI"]));
     32        }
     33
    2934        printf("</form>\n");
    3035        printf("</center>\n");
     
    6166        if ($result0)
    6267        {
    63             if ($html=="1")
     68            if ($html=="1" || $html=="2")
    6469            {
    6570                $alias = array
     
    98103    else
    99104    {
    100         echo (file_get_contents("index-header.html"));
     105        if (empty($_GET["fPrintTable"]))
     106            echo (file_get_contents("index-header.html"));
    101107
    102108        $environment = sizeof($_GET);
    103109
    104         PrintForm($_GET);
     110        if (empty($_GET["fPrintTable"]))
     111            PrintForm($_GET);
    105112
    106113        if ($environment==0)
    107114            printf("No query submitted yet.<BR>");
    108115        else
    109             PrintPage("1", $host, $user, $pw, $db);
     116        {
     117            if (empty($_GET["fPrintTable"]))
     118                PrintPage("1", $host, $user, $pw, $db);
     119            else
     120                PrintPage("2", $host, $user, $pw, $db);
     121        }
    110122
    111         echo (file_get_contents("index-footer.html"));
     123        if (empty($_GET["fPrintTable"]))
     124            echo (file_get_contents("index-footer.html"));
    112125    }
    113126
Note: See TracChangeset for help on using the changeset viewer.