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