estrutura de repeticao for

This commit is contained in:
2026-05-21 21:12:13 -03:00
parent 56b9f63594
commit 26f6c9d63e

View File

@@ -1,5 +1,5 @@
<?php
for ($i = 1; $i <= 5; $i++){
echo "teste $i<br>";
for ($i = 10; $i >= 1; $i--) {
echo "<h3> $i</h3>";
}
?>