0

これは私のコード

public function get_news($NewsId= FALSE)
{
    if ($NewsId === FALSE)
    {
    $query = $this->db->get('news');
    return $query->result_array();
    $config['per_page']; $this->uri->segment(3);
    }
    $query = $this->db->get_where('news',
                             array('NewsId' => $NewsId,
                                    'Language' => '2');
    return $query->row_array();
}

これは、言語条件を削除すると機能 しないため、アップ コードで機能します。現在は NewId => $NewsId のような条件をもう 1 つ追加し、このコードにもう 1 つ追加したい LanId = $LanId

事前によろしく

4

1 に答える 1