Last active
October 26, 2025 07:34
-
-
Save JeffreyWay/7699e6ba2c73b67084cc06be4d876e8f to your computer and use it in GitHub Desktop.
Revisions
-
JeffreyWay revised this gist
Sep 19, 2022 . 1 changed file with 26 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,26 @@ <!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> -
JeffreyWay revised this gist
Sep 19, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -9,7 +9,7 @@ <?php $books = [ "Do Androids Dream of Electric Sheep", "The Langoliers", "Hail Mary" ]; -
JeffreyWay created this gist
Sep 19, 2022 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ <!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>