TOPcakePHPMySQLPHPCentOSPostfixHTML
HOME > cakePHP > paginete 1-2 並べ替え

paginete 1-2 並べ替え

2012年02月08日
controller
function index(){

$this->paginate['order'] = array('Post.created DESC'); //作成日降順で並べ替え 昇順の場合ASC
$this->set('data',$this->paginate());
}