Skip to content

Instantly share code, notes, and snippets.

@JeffreyWay
Last active October 26, 2025 07:34
Show Gist options
  • Select an option

  • Save JeffreyWay/7699e6ba2c73b67084cc06be4d876e8f to your computer and use it in GitHub Desktop.

Select an option

Save JeffreyWay/7699e6ba2c73b67084cc06be4d876e8f to your computer and use it in GitHub Desktop.

Revisions

  1. JeffreyWay revised this gist Sep 19, 2022. 1 changed file with 26 additions and 0 deletions.
    26 changes: 26 additions & 0 deletions homework-solution.php
    Original 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>
  2. JeffreyWay revised this gist Sep 19, 2022. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion index.php
    Original file line number Diff line number Diff line change
    @@ -9,7 +9,7 @@

    <?php
    $books = [
    "Do Androids Dream of Electric Sheep",
    "Do Androids Dream of Electric Sheep",
    "The Langoliers",
    "Hail Mary"
    ];
  3. JeffreyWay created this gist Sep 19, 2022.
    25 changes: 25 additions & 0 deletions index.php
    Original 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>