<?php
$a = 1;
$b = 1;
if($a>=8)
{echo $c=$a+$b;
}
else if{
$a++;
echo $c;
?>
<?php $a = 1; $b = 1; while($a<=8){ $a++; } $c=$a+$b; echo $c;