Advertisement
lamorfini

Untitled

Aug 23rd, 2024
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.65 KB | None | 0 0
  1.  <div class="row g-3">
  2.                                 <div class="col-sm-4">
  3.                                     <label for="giorno_nascita" class="form-label">Giorno</label>
  4.                                     <select id="giorno_nascita" class="form-select" name="giorno_nascita" required>
  5.                                         <option value="">Giorno</option>
  6.                                         <?php for ($i = 1; $i <= 31; $i++): ?>
  7.                                         <option value="<?php echo $i; ?>"
  8.                                             <?php echo isset($giorno) && $giorno == $i ? 'selected' : ''; ?>>
  9.                                             <?php echo $i; ?>
  10.                                         </option>
  11.                                         <?php endfor; ?>
  12.                                     </select>
  13.                                 </div>
  14.                                 <div class="col-sm-4">
  15.                                     <label for="mese_nascita" class="form-label">Mese</label>
  16.                                     <select id="mese_nascita" class="form-select" name="mese_nascita" required>
  17.                                         <option value="">Mese</option>
  18.                                         <?php for ($i = 1; $i <= 12; $i++): ?>
  19.                                         <option value="<?php echo $i; ?>"
  20.                                             <?php echo isset($mese) && $mese == $i ? 'selected' : ''; ?>>
  21.                                             <?php echo mb_strtoupper(strftime('%B', mktime(0, 0, 0, $i, 10)), 'UTF-8'); ?>
  22.                                         </option>
  23.                                         <?php endfor; ?>
  24.                                     </select>
  25.                                 </div>
  26.                                 <div class="col-sm-4">
  27.                                     <label for="anno_nascita" class="form-label">Anno</label>
  28.                                     <select id="anno_nascita" class="form-select" name="anno_nascita" required>
  29.                                         <option value="">Anno</option>
  30.                                         <?php for ($i = date('Y'); $i >= 1900; $i--): ?>
  31.                                         <option value="<?php echo $i; ?>"
  32.                                             <?php echo isset($anno) && $anno == $i ? 'selected' : ''; ?>>
  33.                                             <?php echo $i; ?>
  34.                                         </option>
  35.                                         <?php endfor; ?>
  36.                                     </select>
  37.                                 </div>
  38.                             </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement