Welcome Guest, Not a member yet? Register   Sign In
While loop
#1

[eluser]Avril[/eluser]
Hello,

Is a while loop instead of a foreach loop possible in CI?

Thanks
#2

[eluser]smilie[/eluser]
w00t, not sure what your question is Smile
But, while and foreach are both PHP functions which have nothing to do with CI itself Smile

So, yes - they are both possible Smile

Cheers,
Smilie
#3

[eluser]Federico BaƱa[/eluser]
I guess you can only use a while on an array with numeric keys, foreach can be used for associative arrays as well as the others.

Code:
foreach ($arr as $key => $val)
{
    echo $key . ":" . $arr[$key];
}




Theme © iAndrew 2016 - Forum software by © MyBB