我不能傳遞變量視圖頁面未定義的變量
這是我的控制器代碼
<?php if (! defined('BASEPATH')) exit('No direct script access allowed');
class Management extends CI_Controller {
public function __construct()
{
parent::__construct();
if($this->session->userdata('level') != 1){
redirect('');
}
}
public function hotels()
{
$this->load->model('model_hotels');
$ss['most_view_hotels'] = '23';
$this->load->view("management/header_mng_view");
$this->load->view('management/hotels_mng_view' , $ss , true);
$this->load->view("management/footer_mng_view");
}
}
這是錯誤
一個PHP錯誤遇到
嚴重性:通知
消息:未定義變量:most_view_hotels
文件名:管理/ hotels_mng_view.php
行號:22
hotels_mng_view.php
<?php
echo $most_view_hotels;
foreach($most_view_hotels as $value):
?>
<div class="row">
<div class="cell en">adsf</div>
<div class="cell en">1212</div>
<div class="cell en">12</div>
<div class="cell en">32</div>
</div>
<?php endforeach;?>
顯示管理/ hotels_mng_view.php – xdazz
xdazz我添加了代碼 – bosami
由於'most_view_hotels'不是數組,所以'foreach'應該顯示錯誤。但它仍然不是你的帖子中給出的。 – air4x