I'm new for CakePHP;
The URL address bar is always appended after I clicked on every menu;
I have defined my routes as below:
Router::connect('/brand/*', array('controller' => 'phones', 'action' => 'phonebybrand'));
This is my menu:
<?php
foreach ($phonebrands as $phonebrand):
echo '<li><a href="brand/{$phonebrand['Phonebrand']['id']}">{$phonebrand['Phonebrand']['brandname']}</a></li>';
endforeach;
?>
I tried to click my menu for several times; what I found out is the URL always appended;
1st time: localhost/cakephp-2.3.2/brand/43
2nd time: localhost/cakephp-2.3.2/brand/brand/43
3rd time: localhost/cakephp-2.3.2/brand/brand/brand/43
Please help me, why it's always appended the url?
Thank.