is it possible to do this? (here is my code)
for ($i = 0 ; $i <= 10 ; $i++){
for ($j = 10 ; $j >= 0 ; $j--){
echo "Var " . $i . " is " . $k . "<br>";
}
}
I want something like this:
var 0 is 10
var 1 is 9
var 2 is 8 ...
But my code is wrong, it gives a huge list. Php guru, help me !!
Try this:
The two variables
$i
and$k
are initialized with0
and10
respectively. At the end of each each loop$i
will be incremented by one ($i++
) and$k
decremented by one ($k--
). So$i
will have the values 0, 1, …, 10 and$k
the values 10, 9, …, 0.You shouldn't be using two for-loops for what you'd like to achieve as you're looping 121 times total (11x11). What you really want is just to have a counter declared outside of the loop that tracks j, and then decrement j inside the loop.
Edit: Thanks Gumbo for catching the inclusion for me.
To expand on the other (correct) answers, what you were doing is called nesting loops. This means that for every iteration of the outer loop (the first one), you were completing the entire inner loop. This means that instead of 11 outputs, you get
11 + 11 + 11 + ... = 11 * 11
outputsIf, as your code looks like, you have two values running the opposite direction you could simply substract:
But I guess that's not really what you want? Also, be careful with the suggested comma operator. While it is a nice thing it can cause naughty side effects in other languages like C and C++ as PHP implements it differently.
I tried to get a start and end time and store in the database, given a start and end time, you loop through each time using two variables i&j