Last active
October 14, 2024 11:19
-
-
Save JeffreyWay/7699e6ba2c73b67084cc06be4d876e8f to your computer and use it in GitHub Desktop.
PHP For Beginners, Episode 6 - Arrays
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Demo</title> | |
</head> | |
<body> | |
<?php | |
$usernames = [ | |
"JohnDoe", | |
"JaneDoe", | |
"FrankDoe" | |
]; | |
?> | |
<h1>Top Performing Users</h1> | |
<ol> | |
<?php foreach ($usernames as $username) : ?> | |
<li><?= $username ?></li> | |
<?php endforeach; ?> | |
</ol> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Demo</title> | |
</head> | |
<body> | |
<h1>Recommended Books</h1> | |
<?php | |
$books = [ | |
"Do Androids Dream of Electric Sheep", | |
"The Langoliers", | |
"Hail Mary" | |
]; | |
?> | |
<ul> | |
<?php foreach ($books as $book) : ?> | |
<li><?= $book ?></li> | |
<?php endforeach; ?> | |
</ul> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hello professor, how are you doing i hope you are fine,
i have question how i can TM in tradmark ?