Skip to content

Instantly share code, notes, and snippets.

@JeffreyWay
Last active April 23, 2024 11:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save JeffreyWay/7699e6ba2c73b67084cc06be4d876e8f to your computer and use it in GitHub Desktop.
Save JeffreyWay/7699e6ba2c73b67084cc06be4d876e8f to your computer and use it in GitHub Desktop.
PHP For Beginners, Episode 6 - Arrays
<!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>
<!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