這裏我的問題:活動記錄,並與特定的ID行加入
- 我稱之爲一個控制器:事件
- 我叫一個觀點:inscrits_liste
- 我叫一個模型:inscrits_model
我有我的查詢2分表上工作:
表1:inscrits
表2:etats
並稱爲第三張表:事件
在我的表 「etats」
我有 'etat_id' 和 'etat_lib'
我想有來自1個「inscrit」的細節與針對指定的事件ID的'etat' 的庫。
events.php
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class Events extends MY_Controller
{
public function __construct()
{
parent::__construct();
$this->load->model('event_model', 'event_m'); // Modele des évènements
$this->load->model('inscrits_model', 'inscrits_m'); // Modele des inscrits
$this->template->title('Gestion des évènements');
$this->template->data('titre', 'EVENTS');
$this->is_validated();
}
public function index()
{
// Preparation du template
$this->template->data('heading', 'Liste des evènements');
$this->template->widgets('content', 'events_list');
try
{
// On recupère la liste des events
$this->template->data('evt', $this->event_m->get_all(array(), array('evenement_title ASC')));
// On charge le template
$this->template->load();
}
catch (Exception $e)
{
echo $e->getCode() . " => " . $e->getMessage();
}
}
public function inscrits($event_id)
{
// Preparation du template
$this->template->data('heading', 'Liste des inscrits');
$this->template->widgets('content', 'inscrits_liste');
try
{
// On recupère la liste des inscrits
$this->template->data('inscrits', $this->inscrits_m->inscrits_event($event_id));
// On charge le template
$this->template->load();
}
catch (Exception $e)
{
echo $e->getCode() . " => " . $e->getMessage();
}
}
}
型號:
<?php
class inscrits_model extends MY_Model
{
protected $table = 'inscrits';
protected $primary = 'inscrits_id';
public function inscrits_event($event_id)
{
$this->db->select('inscrits_id,inscrits_pseudo,inscrits_nom,inscrits_prenom,inscrits_email,etat_lib');
$this->db->from('inscrits');
$this->db->join('etats', 'inscrits.inscrits_etat_id = etats.etat_id', 'inner');
$this->db->where('inscrits_evenement_id', $event_id);
$joint = $this->db->get();
return $joint;
}
}
/* End of file admin_model.php */
/* Location: ./application/models/admin_model.php */
的問題是使用的特定事項標識,以便爲當前事件1個inscrit請求。
我找不到機制:■
我知道模型做了查詢,該控制器使用該模型DATAS發送到視圖。 但在我的情況下,在模型中,我想使用從視圖中的行給出的數據(當前event_id)。
我迷路了!
請張貼錯誤您收到:) – sbaaaang 2013-04-07 01:49:35