6 lines
73 B
PHP
6 lines
73 B
PHP
<?php
|
|
for ($i = 1; $i <= 5; $i++){
|
|
echo "teste $i<br>";
|
|
}
|
|
echo $i;
|
|
?>
|