コード例 #1
0
ファイル: massupdate.php プロジェクト: jphilip124/Symbiota
						</select>
						<?php 
        count($selectList);
        ?>
					</div>
					<div style="margin: 10px 0px;">
						<input type="checkbox" name="generaonly" value="1" <?php 
        if ($generaOnly) {
            echo "checked";
        }
        ?>
 /> 
						Exclude Species Rank
					</div>
			 		<?php 
        $cList = $muManager->getCharList($taxonFilter);
        //Array(Heading => Array(CID => CharName))
        foreach ($cList as $h => $charData) {
            echo "<div style='margin-top:1em;font-size:125%;font-weight:bold;'>{$h}</div>\n";
            ksort($charData);
            foreach ($charData as $cidKey => $charValue) {
                echo '<div> <input name="cid" type="radio" value="' . $cidKey . '" onclick="submitFilterForm(this)">' . $charValue . '</div>' . "\n";
            }
        }
        ?>
					<input type="hidden" name="pid" value="<?php 
        echo $pid;
        ?>
" />
					<input type="hidden" name="lang" value="<?php 
        echo $langValue;
コード例 #2
0
            echo '<option value="' . $tid . '" ' . ($tid == $taxonFilter ? "SELECTED" : "") . '">' . $scinameValue . "</option>\n";
        }
        ?>
						</select>
					</div>
					<div style="margin: 10px 0px;">
						<input type="checkbox" name="generaonly" value="1" <?php 
        if ($generaOnly) {
            echo "checked";
        }
        ?>
 /> 
						Exclude Species Rank
					</div>
			 		<?php 
        $cList = $muManager->getCharList();
        //Array(Heading => Array(CID => CharName))
        foreach ($cList as $h => $charData) {
            echo "<div style='margin-top:1em;font-size:125%;font-weight:bold;'>{$h}</div>\n";
            ksort($charData);
            foreach ($charData as $cidKey => $charValue) {
                echo '<div> <input name="cid" type="radio" value="' . $cidKey . '" onclick="submitFilterForm(this)">' . $charValue . '</div>' . "\n";
            }
        }
        ?>
					<input type="hidden" name="proj" value="<?php 
        echo $projValue;
        ?>
" />
					<input type="hidden" name="lang" value="<?php 
        echo $langValue;