Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way of creating an age select list like this:

<?php
$Array = array('99','98','97','96');
?>
<select name="age">
<option value="" selected>Choose</option>
<?php foreach($Array as $value){ echo('<option value="' . $value . '">' . $value . '</option>');}?>
</select>

but without a really long array as I want age range to be from say 18 upto 100 and that would take forever to writeout?

share|improve this question
Writing out everything? That would kinda defeat the whole purpose of programming lol – Moak Jan 23 '11 at 5:08

2 Answers

up vote 6 down vote accepted

Using a basic for loop:

<?php 
for($value = 18; $value <= 100; $value++){ 
    echo('<option value="' . $value . '">' . $value . '</option>');
}
?>
share|improve this answer
Thank you Mark works a treat :) – Dizzi Jan 23 '11 at 5:07
1  
@Dizzi would you care to mark the answer as the correct solution – woody993 Jan 23 '11 at 5:40
Sorry quite new here ...Done :) – Dizzi Jan 23 '11 at 6:57

PHP has a range function that you can use in order to generate an array made up of a range of numbers.

foreach (range(0, 12) as $value ) {
   echo('<option value="' . $value . '">' . $value . '</option>');
}
share|improve this answer
+1 this is new to me and absolutely brilliant – Moak Jan 23 '11 at 5:09
This also works thanks Bryan – Dizzi Jan 23 '11 at 7:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.