Guest User

Untitled

a guest
Jul 21st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php for ( $i = 2006; $i => 1900; $i-- ) {
  2. echo '<option value="' . $i . '" ';
  3. if ( $i == $_POST['year'] ) echo 'selected="selected"';
  4. echo '>'. $i . '</option>';
  5. } ?>
Add Comment
Please, Sign In to add comment