Я знаю, что это просто, но я не заполнил это.
$query = $this->db->get_where('prepared_forms', array('topic' => $this->input- >post('prepared_topics'))); $new_form = $query->row_array();
Как заказать заказ готовых форм по названию темы (ASC)?
Попробуйте это:
$query = $this->db->order_by('topic', 'asc')->get_where('prepared_forms', array('topic' => $this->input->post('prepared_topics'))); $new_form = $query->row_array();
$this->db->select("*") ->from('prepared_forms') ->where('topic', $this->input->post('prepared_topics')) ->order_by('topic', 'asc') ->get() ->result_array();
$this->db->order_by("topic", "asc"); $query = $this->db->get_where('prepared_forms', array('topic' => $this->input->post('prepared_topics'))); $new_form = $query->row_array();