1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
PHP_TP1/helloworld1.php
2020-10-01 08:41:35 +02:00

16 lines
306 B
PHP

<!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>