To using the for to generate a loop of 4 reps! Inside this loop I make a very simple numerical multiplication.
<?php
echo "Resultado: ";
for($loop = 1; $loop <= 4; $loop += 1)
{
echo ($loop * 10)." ";
}
?>
Resultado: 10 20 30 40
And I do not know how, but I would like the result to be
1 10 50 100
How to do this!?