UPDATE: ITS WORKING NOW, A ERROR IN MY MODAL. SORRY.
我的控制器或模型有点问题,我不知道,但我需要你的帮助。我刚开始出错
调用未定义的方法 Modeloproduccion::obtener_produccion_por_id()
这是我的控制器Produccion.php
function actualizar()
{
$this->load->helper('form');
$data['main_title'] = 'Proyectos';
$data['title2'] = 'Ver/Editar Proyecto';
// Obtenemos el id de la editorial a editar
$id = $this->input->post('id');
$resultado = $this->modeloproduccion->obtener_produccion_por_id($id);
这是我的模型Modeloproduccion.php
function obtener_produccion_por_id($id)
{
$this->db->where('id', $id);
$query = $this->db->get('produccion');
return $query->result_array();
}
任何的想法?
太感谢了!
MMTTMM
MYYA