1
0
Fork 0

Make helloworld1

This commit is contained in:
Ethanell 2020-09-10 15:56:30 +02:00
parent 27c063e052
commit 8732a845d2

15
helloworld1.php Normal file
View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello World 1</title>
</head>
<body>
<ul>
<?php
for ($i = 0; $i < 10; $i++) {?>
<li>Hello World !</li>
<?php } ?>
</ul>
</body>
</html>