krs10_s Posted March 4, 2009 Share Posted March 4, 2009 When creating a dropdown is it normal to write out all the dropdown options or can you use a loop or something? let me know if question is not clear:) Link to comment https://forums.phpfreaks.com/topic/147911-dropdown-menu-question/ Share on other sites More sharing options...
zartzar Posted March 4, 2009 Share Posted March 4, 2009 When creating a dropdown is it normal to write out all the dropdown options or can you use a loop or something? let me know if question is not clear:) Hey fellow noob! Yes it much easier to use a for loop especially when you are dealing with a large amount of numbers. Heres an example, print numbers 1 to 100 print "<select name='numincome'>"; for($c=1; $c<=100; $c++) { print "<option value='$c'>$c</option>"; } print "</select>"; Link to comment https://forums.phpfreaks.com/topic/147911-dropdown-menu-question/#findComment-776290 Share on other sites More sharing options...
zartzar Posted March 4, 2009 Share Posted March 4, 2009 Who are you krs10_s???? Ive read your other posts, I can tell you are in my SI314 class!!! Link to comment https://forums.phpfreaks.com/topic/147911-dropdown-menu-question/#findComment-776355 Share on other sites More sharing options...
krs10_s Posted March 4, 2009 Author Share Posted March 4, 2009 it's Kirsten Can you tell by my posts that i know %&*# all!! who You? Link to comment https://forums.phpfreaks.com/topic/147911-dropdown-menu-question/#findComment-776379 Share on other sites More sharing options...
zartzar Posted March 4, 2009 Share Posted March 4, 2009 it's Kirsten Can you tell by my posts that i know %&*# all!! who You? Haha, I think most of us know f-all! . Hmm, cant put a face to that name. Just call me Mr.N...... Link to comment https://forums.phpfreaks.com/topic/147911-dropdown-menu-question/#findComment-776394 Share on other sites More sharing options...
krs10_s Posted March 4, 2009 Author Share Posted March 4, 2009 ok MR N.. see if you can make something out of my ney post, i'm so stuck!!! :'( Link to comment https://forums.phpfreaks.com/topic/147911-dropdown-menu-question/#findComment-776412 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.