Hi want to build the query string in magento. I tried
<?php
echo $this->getUrl("catalog/category/view",
array(
"_use_rewrite"=>false,
"category"=>$_category->getId(),
"product"=>$_product->getId()
)
);
?>
i want the url:
http://www.localhost.com/hungermunch/fujigrill/catalog/category/view?category=11&product=1
but im getting
http://www.localhost.com/hungermunch/fujigrill/catalog/category/view/category/11/product/1/
how can i get the required url . Is it possible