Changeset 8204 for trunk/MagicSoft
- Timestamp:
- 11/02/06 09:56:06 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/datacenter/db/plotdb.php
r8162 r8204 35 35 printf("<form style='margin-bottom:0;' action='plotdb.php' METHOD='GET'>\n"); 36 36 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(" <input type='radio' name='plot' value='prim' onclick='hidepulldown2()' %s> vs primary ", $_GET["plot"]=="prim" ? "checked" : ""); 38 printf(" <input type='radio' name='plot' value='val' onclick='showpulldown2()' %s> vs value <br><br>", $_GET["plot"]=="val" ? "checked" : ""); 47 39 48 40 printf("<select name='prim' size='1' class='Width'>\n"); … … 71 63 printf("</td>\n"); 72 64 73 printf("<td align='right' width='640px' >\n");65 printf("<td align='right' width='640px' height='400px'>\n"); 74 66 if (!empty($_GET)) 75 67 {
Note:
See TracChangeset
for help on using the changeset viewer.