Show sourcecode

The following files exists in this folder. Click to view.

webbutv3/word-app/

add-words.php
api/
components/
include.php
index.php
ini/
login.php
logout.php
practice.php
progress.php
public/
scripts/
util/
word.php

index.php

27 lines ASCII Windows (CRLF)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
include "include.php";
$result $db->query("SELECT * FROM word");
?>


<!DOCTYPE html>
<html lang="en">

<head>
    <?php include "components/head.php" ?>
</head>

<body>
    <?php include "components/header.php"?>

    <main>
        <div class="flex w-50">
            <?php
            
foreach ($result as $wordObj) { ?>
                <a href="word.php?id=<?php echo $wordObj["id"?>"><?php echo $wordObj["word"?></a>
            <?php ?>
        </div>
    </main>
</body>

</html>