Ignore:
Timestamp:
06/23/07 19:15:28 (17 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r8464 r8599  
    158158}
    159159
    160 //functions for showplots.php and showplots2.php
     160//functions for showplots*.php
    161161function gettypename($type2)
    162162{
     
    186186}
    187187
     188function PrintType2Pulldown($type2)
     189{
     190    $types=array("calib", "signal", "star");
     191    printf("<select name='type2'>\n");
     192    foreach($types as $t => $typename)
     193        if ($type2==$typename)
     194            printf("<option value='%s' selected>%s </option>\n", $type2, $type2);
     195        else
     196            printf("<option value='%s'>%s </option>\n", $typename, $typename);
     197    print("</select>\n");
     198}
     199
    188200?>
Note: See TracChangeset for help on using the changeset viewer.