示例#1
0
" size="5"> %</span>

                  <label class="short">Daily Cap:</label>
                  <span><input type="text" name="daily_cap" value="<?php 
echo $item['daily_cap'];
?>
" size="5"> %</span>
                </div>

                <div class="field">
                  <label>Exclude Trades:</label>
                  <span>
                    <select name="excludes[]" multiple="multiple" style="min-width: 150px; height: 6.3em;">
                      <?php 
$trades = dir_read_files(DIR_TRADES);
echo form_options_multi($trades, $item['excludes']);
?>
                    </select>
                  </span>
                </div>

                <div class="field">
                  <label></label>
                  <span>
                    <?php 
echo form_checkbox('flag_external', 'Use external info', $item['flag_external']);
?>
                  </span>
                </div>

              </fieldset>
示例#2
0
        <b style="margin-left: 15px;">Group:</b>
        <select name="group">
          <option value="">-- ALL --</option>
          <?php 
$groups = array_map('trim', file(FILE_GROUPS));
echo form_options($groups, $_REQUEST['group']);
?>
        </select>

        <b style="margin-left: 15px;">Category:</b>
        <select name="category">
          <option value="">-- ALL --</option>
          <?php 
$categories = array_map('trim', file(FILE_CATEGORIES));
echo form_options_multi($categories, $_REQUEST['category']);
?>
        </select>

        <input type="submit" value="Submit" style="margin-left: 15px;">
        <input type="hidden" name="r" value="_xStatsOverallShow">
      </form>
    </div>
    <!-- SEARCH OPTIONS END -->


    <!-- LEGEND START -->
    <div class="ta-center fw-bold" style="margin-bottom: 8px;">
      <span class="unconfirmed">Unconfirmed</span>
      <span class="new">New</span>
      <span class="active">Active</span>
示例#3
0
                  <select name="groups[]" multiple="multiple" size="6" style="min-width: 150px;">
                    <?php 
$groups = array_map('trim', file(FILE_GROUPS));
echo form_options_multi($groups, $item['groups']);
?>
                  </select>
                </span>
              </div>

              <div class="field">
                <label class="short">Categories:</label>
                <span>
                  <select name="categories[]" multiple="multiple" size="6" style="min-width: 150px;">
                    <?php 
$categories = array_map('trim', file(FILE_CATEGORIES));
echo form_options_multi($categories, $item['categories']);
?>
                  </select>
                </span>
              </div>

              <div class="field">
                <label class="short"></label>
                <span>
                  <?php 
echo form_checkbox('flag_thumbs_only', 'Only trades that have thumbnails', $item['flag_thumbs_only']);
?>
                </span>
              </div>

              <div class="field">
示例#4
0
                  <span><input type="text" name="daily_cap" value="<?php 
echo $item['daily_cap'];
?>
" size="5"> %</span>
                </div>

                <div class="field">
                  <label class="updatefield">
                    <input type="hidden" name="flag_update[excludes]" value="0" />
                    Exclude Trades:
                  </label>
                  <span>
                    <select name="excludes[]" multiple="multiple" style="min-width: 150px; height: 6.3em;">
                      <?php 
$trades = dir_read_files(DIR_TRADES);
echo form_options_multi($trades);
?>
                    </select>
                  </span>
                </div>

                <div class="field">
                  <label></label>
                  <span class="updatefield">
                    <?php 
echo form_checkbox('flag_external', 'Use external info');
?>
                    <input type="hidden" name="flag_update[flag_external]" value="0" />
                  </span>
                </div>