Here is the code what I've tried
$conditions = "category = :id: AND status = :status: ORDER BY :order: LIMIT 3";
$parameters = array( "id" => $cat_id, "status" => 1, "order" => "title ASC", );
$posts = Posts::find(array( $conditions, "bind" => $parameters ));
Everything is fine except order by. Can you please help me to find out the proper way to use order by in PhalconPHP?