Changeset 8204 for trunk


Ignore:
Timestamp:
11/02/06 09:56:06 (18 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r8162 r8204  
    3535    printf("<form style='margin-bottom:0;' action='plotdb.php' METHOD='GET'>\n");
    3636
    37     printf("<select name='plot' size='1' class='Width'>\n");
    38     if ($_GET["plot"]=="prim")
    39         printf("<option value='prim' onclick='hidepulldown2()' selected>vs primary</option>\n");
    40     else
    41         printf("<option value='prim' onclick='hidepulldown2()'>vs primary</option>\n");
    42     if ($_GET["plot"]=="val")
    43         printf("<option value='val' onclick='showpulldown2()' selected>vs value</option>\n");
    44     else
    45         printf("<option value='val' onclick='showpulldown2()'>vs value</option>\n");
    46     printf("</select><br>\n");
     37    printf("&nbsp;<input type='radio' name='plot' value='prim' onclick='hidepulldown2()' %s> vs primary &nbsp;", $_GET["plot"]=="prim" ? "checked" : "");
     38    printf("&nbsp;<input type='radio' name='plot' value='val' onclick='showpulldown2()' %s> vs value <br><br>", $_GET["plot"]=="val" ? "checked" : "");
    4739
    4840    printf("<select name='prim' size='1' class='Width'>\n");
     
    7163    printf("</td>\n");
    7264
    73     printf("<td align='right' width='640px'>\n");
     65    printf("<td align='right' width='640px' height='400px'>\n");
    7466    if (!empty($_GET))
    7567    {
Note: See TracChangeset for help on using the changeset viewer.