ci フレームワークにデータを接続する際に問題が発生しました
構成内の database.php リンク パラメーターの構成に問題がないことを確認し、次のコードを aotoload.php に追加しました。 $autoload['libraries'] = array('database'); then このページのモデル内の
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php class Mhome extends Model{ function __construct(){ parent::__construct(); // $this->load->database(); } function get_category(){ $query = $this->db->query("select * from category"); return $query->result(); } }