Hi everyone, I was wondering if there is any way to get a variable value before the loop, here is the sample:
echo $i; <-- display 100 here after the loop has been executed
$i = 0;
while ($i <= 100) {
$i++;
}
$i = 100; <- after the loop the $i will be 100, but I want to display him before the loop...
thanks