Reputation: 1
The codeigniter uri string value with hypen was replaced with underscore in query.
For example : http://domain.com//demo1/index.php/class/method/test-product
The URI : test-product was passed into the query with test_product , so the value is empty in the query result.
How to avoid this problem
Upvotes: 0
Views: 190
Reputation: 3170
Use URI Class to get the uri segment value like this way:
$this->uri->segment(n);
here $this->uri->segment(3)
will return test-product
Upvotes: 1