0
How do I move to new line?
<html> <head> </head> <body> <?php $x = 1; do{ $x++; echo $x; } while($x<10); ?> </body> </html> this is the result coming: 2345678910
3 Respostas
0
Janning⭐ Thanks a lot!
0
Anytime! ☺👍
<html> <head> </head> <body> <?php $x = 1; do{ $x++; echo $x; } while($x<10); ?> </body> </html> this is the result coming: 2345678910