How To Create A Loop For This Dropdown Menu? March 18, 2024 Post a Comment And, would a loop be more efficient then listing them out one by one? Solution 1: If it's not more efficient, it's certainly more readable and reusable, which is far more important.<selectname="birthdayYear" ><optionvalue="0000">Year:</option><?phpfor(var$x = year(); $x >= 1900; $x--) { var$selected = ""; if($x == $birthdayYear) { $selected = " selected = 'selected'"; } echo("<option value="$x"$selected>$x</option>"); } ?></select>CopyIn short, my hair is a bird.Solution 2: Basically, you will :Deal with the 0000 specific line yourself, and then, have a for() loop from 2011 to 1900The loop could look a bit like this :for ($year=2011 ; $year>=1900 ; $year--) { echo'<option value="' . $year . '"'; if ($year == $birthdayYear) { echo'selected="selected"'; } echo'>' . $year . '</option>' . PHP_EOL; } Copy Of course, the 2011 year should probably not be hard-coded -- take a look at date() for a possible way of getting the current year.Solution 3: <selectname="birthdayYear" ><optionvalue="0000"<?phpecho$birthdayYear == '0000' ? 'selected="selected"' : ''; ?>>Year:</option><?phpfor($i=date('Y'); $i>1899; $i--) { $selected = ''; if ($birthdayYear == $i) $selected = ' selected="selected"'; print('<option value="'.$i.'"'.$selected.'>'.$i.'</option>'."\n"); } ?></select>CopyAnd, would a loop be more efficient then listing them out one by one?I don't think you have to worry about efficiency. Using a loop just looks cleaner it will be easier to maintain I think.Solution 4: for ($x=(int)date("Y"); $x>=1900; $x=$x--) { echo "<option value=\"", $x, "\"", ($birthdayYear==$x) ?" selected=\"selected\"" : "", ">", $x, "</option>" } CopyThis has the added bonus that you don't have to update it every year.Solution 5: Try this:<selectname="birthdayYear" ><?phpif($year == '0000') { echo'<option value="0000" selected="selected">0000</option>'; } else { echo'<option value="0000">0000</option>'; } for($year = intval(date('Y')); $year > 1900; $year --) { if($year == $birthdayYear) { echo'<option value="'.$year.'" selected="selected">'.$year.'</option>'; } else { echo'<option value="'.$year.'">'.$year.'</option>'; } } ?></select>Copy Share Post a Comment for "How To Create A Loop For This Dropdown Menu?" Top Question How To Make A Tab (i.e. Home, About, Contact) Clickable In Html? I want to make my menu button clickable so that it navigate… Transparency Of A Filled Stroke In HTML5 I'm working on a doodling app in HTML5 and I would like… Full Width List In CSS I'm trying to implement and new layout for my site. I a… How To Apply Font Family In HTML Tag Of Select Option I am applying Font family in tag but it is not working any… How To Make A Navbar Like WikiHow? I would like a navbar like WikiHow with a icon on top and t… Html Formatted Text In An Email In Java try{ String msg='Happy BirthDay Dear, '+na… Getting More Granular Diffs From Difflib (or A Way To Post-process A Diff To Achieve The Same Thing) Downloading this page and making a minor edit to it, changi… Change Text Color Inside Box On Hover So right now self teaching myself so html and CSS and I hav… Relative Path To Absolute With File:// Protocol I do scraping on a site which has similar html I also ha… Angularjs: Pass Parameter Between Controllers What i am trying to do: I have a ListView (or rather an acc… December 2024 (1) November 2024 (39) October 2024 (64) September 2024 (16) August 2024 (357) July 2024 (329) June 2024 (675) May 2024 (1285) April 2024 (750) March 2024 (1511) February 2024 (1704) January 2024 (1343) December 2023 (1361) November 2023 (435) October 2023 (564) September 2023 (318) August 2023 (329) July 2023 (281) June 2023 (350) May 2023 (230) April 2023 (144) March 2023 (142) February 2023 (163) January 2023 (237) December 2022 (132) November 2022 (212) October 2022 (175) September 2022 (161) August 2022 (293) July 2022 (98) Menu Halaman Statis Beranda © 2022 - Html5 stackoverflow Examples