How to change url pagination in cakephp? -


i want url change this
/examinations/getchoices/page:2

to this
/examinations/getchoices/item/2

i wonder how this. i've tried changing in routes.php. i've tried tutorial in this site. page content doesn't change when click prev or next links.

this got in url
/examinations/getchoices/ 2/ 2

my version of cake 2.1.

your appreciated. i've been stuck 2 days already. thank you.

you can define custom routes.

http://book.cakephp.org/2.0/en/development/routing.html

e.g.

router::connect(   ' /examinations/getchoices/item/:number',   array('controller' => 'examinations', 'action' => 'getchoices'),   array('pass' => array('number')) ); 

let me know if can assist more


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -