0

ここのタイトルと同じエラーが発生し続けます...なぜこれが起こっているのかわかりません。私はそれを機能させるために過去1時間ほど疲れました。

<?php
class siteHeader extends siteSetting
{
    public $html;
    public $pid;

    function __construct()
    {
        parent::__construct();
            $this->pid = $_GET['pid'];
            $this->html .= "<body>";
            $this->html .="<div id='site_header'>";
            $this->constructHeader();
            $this->constructMenu();
            $this->html .="</div>";
            $this->html .= "</body>";

    echo $this->html;
    }
    function constructHeader()
    {
        $this->html .= '<h1>'.SITE_NAME.'</h1>';
    }
    function constructMenu()
    {
        parent::select_db('thc_settings');
        $que = parent::query('SELECT * FROM pages');
        $row = $que->fetch_array();
        echo $row[0];
    }
}
4

1 に答える 1