タグ

ブックマーク / blog.livedoor.jp/nezox1 (1)

  • CakePHP まとめ

    数十件単位のデータを表示する際のページ切り替えを簡単に作る事が出来ます。 http://wiki.cakephp.org/tutorials:pagination まず上記ページの「Step 1: Get the files」にある3ファイルをそれぞれ /app/controllers/components/pagination.php /app/views/helpers/pagination.php /app/views/elements/pagination.thtml として保存します。 【Controllerに記述】 var $components = array ('Pagination');var $helpers = array('Pagination'); function paging_list() { list($order,$limit,$page) = $this

  • 1