2012-03-21 4 views

答えて

3
$this->db->select("*") 
    ->from('prepared_forms') 
    ->where('topic', $this->input->post('prepared_topics')) 
    ->order_by('topic', 'asc') 
    ->get() 
    ->result_array(); 
2
$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(); 
4

これを試してみてください:

$query = $this->db->order_by('topic', 'asc')->get_where('prepared_forms', array('topic' => $this->input->post('prepared_topics'))); 
$new_form = $query->row_array(); 
関連する問題