<?php
    require_once("get_meme.php");
    $all_memes = get_meme_ids();
?>
<!DOCTYPE html>
<html>
    <head>
        <title>memes list ?></title>
    </head>
    <body>
        <h1>memes</h1>
        <ul>
            <?php
                foreach($all_memes as $id){
                    $meme_data = get_meme($id);
                    $description = $meme_data["description"];
                    echo("<li><a href=\"memes.php?id=$id\">$description</a></li>");
                }
            ?>
        </ul>
    </body>
</html>