-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask3.php
More file actions
26 lines (25 loc) · 721 Bytes
/
task3.php
File metadata and controls
26 lines (25 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<title>
</title>
</head>
<body>
<h1>Printing out names as a list task 1.3</h1>
<?php
$name1 = "Alexander";
$name2 = "Jeffrey";
$name3 = "James";
$name4 = "Kamil";
$name5 = "Danny";
echo "<p>Here are some names</p>";
?>
<ul>
<li>Person 1: <?php echo $name1;?></li>
<li>Person 2: <?php echo $name2;?></li>
<li>Person 3: <?php echo $name3;?></li>
<li>Person 4: <?php echo $name4;?></li>
<li>Person 5: <?php echo $name5;?></li>
</ul>
</body>
</html>