2012-03-21 76 views
2

我知道这很简单,但我没有完成它。如何在codeigniter中使用order-by?

$query = $this->db->get_where('prepared_forms', array('topic' => $this->input- >post('prepared_topics'))); 
$new_form = $query->row_array(); 

如何通过主题名称(ASC)订购预制表格?

回答

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();