Make helloworld1
This commit is contained in:
parent
27c063e052
commit
8732a845d2
1 changed files with 15 additions and 0 deletions
15
helloworld1.php
Normal file
15
helloworld1.php
Normal 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>
|
Reference in a new issue