Ver original$n = 1;$valor = 0;while($n < 10){ $valor = $valor + 4; // También se puede hacer así: //$valor += 4; $n++;}