i want to sort the products according to their name and price. When i do <?php echo $this->Paginator->sort('name'); ?>
it works. But it is not working in dropdown list. Thanks for any suggestion. My Code is
<select name="">
<option>Position</option>
<option> S<?php echo $this->Paginator->sort('name'); </option>
<option><?php echo $this->Paginator->sort('price'); ?></option>
</select>