Warning: Undefined array key "HTTPS" in /var/www/sumscool.ca/html/SiteRoot.php on line 21
Hits: 639

List

Try: /ViewFile.php?path=ViewFile.php -- Online


<?php
    require_once $_SERVER['DOCUMENT_ROOT'] . "/SiteRoot.php";
?>
<h4>Topics</h4>

<?php
    global $db;
   
    $db->issue("USE topics");

    $data = $db->select("SELECT tableName,topic FROM topics");


    if ($data['count'] == 1) {

        $row = $data['rows'];
        print("<a href='/topics/" . $row['tableName'] . "'>" . $row['topic'] . "</a><br />");
    } else {
        $rows = $data['rows'];

        for($i = 0; $i < count($rows);$i++) {
        
            $row = $rows[$i];
            print("<a href='/topics/" . $row['tableName'] . "'>" . $row['topic'] . "</a><br />");
        }
    }