Answered
while (list ($index; $value) = each ($array)) { echo "Wtf?!"; }
Hello fellows!
I'm new to PHP and now I'm stuck at list(); and each(); functions.
Can anyone explain me the meaning of:
list ($index; $value) = each ($array) ?
I understand that the meaning of variables in this code:
$array[index]="value";
But what is the meaning of the equation in the brackets of while cycle?
Thank you people!
DissidentPJ
