Order_by не работает [закрыто]Php

Кемеровские программисты php общаются здесь
Anonymous
Order_by не работает [закрыто]

Сообщение Anonymous »

У меня есть этот запрос, но когда результат отображается, он не отсортирован

function get_productbyid($productid) {
$this->db->select('*')->from('projquotedetails,products')
->where(array('projquotedetails.productid' => $productid))
->where('projquotedetails.productid = products.productid')
->order_by('page_order','asc')
;

$query = $this->db->get();

if ($query->num_rows() > 0) { return $query->result_array(); }
else { return 0; }

}


Подробнее здесь: https://stackoverflow.com/questions/571 ... unctioning

Вернуться в «Php»