Welcome Guest, Not a member yet? Register   Sign In
How to pass data from a one form to another
#4

[eluser]CroNiX[/eluser]
You have a lot of unneeded stuff in there, try simplifying it to the basics.

Code:
public function buscarcurso(){
  $nombre = $this->input->post('cursos');
  $buscanombre = $this->participante_model->obtenerdatosgrupo($nombre);
}

Code:
public function obtenerdatosgrupo($nombre){
       $this->db->select('nombre, Horas, Costo');
       $this->db->where('nombre', $nombre);
       $query = $this->db->get('curso');
}


Messages In This Thread
How to pass data from a one form to another - by El Forum - 08-06-2014, 01:30 PM
How to pass data from a one form to another - by El Forum - 08-06-2014, 03:18 PM
How to pass data from a one form to another - by El Forum - 08-06-2014, 03:45 PM
How to pass data from a one form to another - by El Forum - 08-06-2014, 04:45 PM
How to pass data from a one form to another - by El Forum - 08-06-2014, 05:16 PM
How to pass data from a one form to another - by El Forum - 08-06-2014, 05:55 PM
How to pass data from a one form to another - by El Forum - 08-06-2014, 06:36 PM
How to pass data from a one form to another - by El Forum - 08-06-2014, 07:13 PM
How to pass data from a one form to another - by El Forum - 08-07-2014, 07:29 AM
How to pass data from a one form to another - by El Forum - 08-07-2014, 09:03 AM



Theme © iAndrew 2016 - Forum software by © MyBB