Translated using Weblate (Greek)
[phpmyadmin.git] / templates / startAndNumberOfRowsPanel.phtml
blobd50474db65ca3fac514de78ad7aa86104967d221
1 <fieldset>
2     <div>
3         <label for="pos"><?= __('Start row:'); ?></label>
4         <input type="number" name="pos" min="0" required="required"
5             <?php if ($unlim_num_rows > 0) : ?>
6                 max="<?= ($unlim_num_rows - 1); ?>"
7             <?php endif; ?>
8             value="<?= htmlspecialchars($pos); ?>" />
10         <label for="session_max_rows"><?= __('Number of rows:'); ?></label>
11         <input type="number" name="session_max_rows" min="1"
12                value="<?= htmlspecialchars($rows); ?>" required="required" />
13         <input type="submit" name="submit" class="Go"
14                value="<?= __('Go'); ?>" />
15         <input type="hidden" name="sql_query"
16                value="<?= htmlspecialchars($sql_query); ?>" />
17         <input type="hidden" name="unlim_num_rows"
18                value="<?= htmlspecialchars($unlim_num_rows); ?>" />
19     </div>
20 </fieldset>