Estrutura de repetição for

This commit is contained in:
2026-05-21 20:35:49 -03:00
parent fb2845d616
commit bb613f4341

View File

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