CodeIgniter: URIs and Forms
问题 I'm implementing a search box using CodeIgniter, but I'm not sure about how I should pass the search parameters through. I have three parameters: the search string; product category; and the sort order. They're all optional. Currently, I'm sending the parameters through $_POST to a temporary method, which forwards the parameters to the regular URI form. This works fine. I'm using a weird URI format though: http://site.com/products/search=computer,sort=price,cat=laptop Does anyone have a