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.

Given that:

$min=30
$max=60

(min and max being variables that are rounded either to the nearest 5 or 10)

How do you generate an output that counts in five within the min and max range in a table format?

For example with the above example you would get an output of:

cname  |
-------|
30     |
-------|
35     |
-------|
40     |
-------|
45     |
-------|
50     |
-------|
55     |
-------|
60     |
-------|
share|improve this question
2  
for( $i = $min; $i <= $max; $i+=5 ) – Juhana Mar 19 '12 at 20:21

2 Answers

up vote 7 down vote accepted

Minor variant on the above answers

foreach(range($min,$max,5) as $value) {
    //  do whatever
}
share|improve this answer
for ($i = 30; $i <= 50; $i+=5) {
    echo $i;
}

For more information have a look here: http://php.net/manual/en/control-structures.for.php

share|improve this answer
Or $ranges = range(30, 60, 5);. :) – Shef Mar 19 '12 at 20:22

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.