1: 2: 3:
while(i=1; i<=100;i++){<Anweisungsblock> }
echo i;
1:
while ($i<100) {<Anweisungsblock>; $i++}
echo $i;