Facing difficulty in moving the two id's
- by user1806560
By means of <?php echo $productlist->productid;?> in href i am passing the productid,its fine based on that i can able to display the items.
The url is looking like this when i am passing like this http://localhost/sample/index.php/userlogin/items/35 .
<ul class="left_menu">
<li class="odd"><a href="<?php echo BASE_INDEX_URL;?>/userlogin/items/<?php echo $productlist->productid;?>">
<?php
echo $productlist->productname;
?>
</a></li>
</ul>
My model is taking the value like this
public function items($productid=0)
{
}
But i want to pass one more id as categoryid in the href, how can i do that
My model is taking the value like this(for 2 parameters)
public function items($productid=0,$categoryid=0)
{
}