こんにちは、私は CodeIgniter を初めて使用し、チュートリアルを受講しています。エラーが発生しました
A PHP Error was encountered
Severity: Notice
Message: Undefined variable: subview
Filename: admin/_layout_modal.php
Line Number: 7
An Error Was Encountered
Unable to load the requested file: .php
私はティーまでチュートリアルに従いましたが、どこが間違っているのかわかりません。
ここにコントローラーがあります
<?php
class User extends Admin_Controller {
public function __construct() {
parent::__construct();
}
public function login() {
$this->data['subview'] = 'admin/user/login';
$this->load->view('admin/_layout_modal', $this->data);
}
}
とビュー
<?php $this->load->view($subview); ?>
助けてください...