Computer Science, asked by Hiresh646, 1 year ago

Write a program using for each to print numbers from 10-20 in php​

Answers

Answered by Mr0Shubham0
2

Answer:

We can print numbers from 1 to 10 by using for loop. You can easily extend this program to print any numbers from starting from any value and ending on any value.

for( $i=1; $i<=10; $i++ )

{

echo $i;

echo "<br>";

}

Answered by tadisettysatyanaraya
0

EGGIRI THANTHAA NEE AKKA .

Similar questions