sorry to bother but I was hoping someone could help me out with a quite mundane issue that I am having within CI. I am able to send a variable via the URL using CI's examples eg:
http://localhost/project/main/getproduct/24
within the getproduct() method of my main controller I can get the variable sent 24, without an issue.
however I now want to pass two variables via the URL, but I have no idea how to do this or whether CodeIgniter will allow me to do this. could someone please show me how to pass 2 variables in CI and a method that can retrieve them I have tried:
http://localhost/project/main/getproduct/24/45
and then within my getproduct method:
public function getproduct($productID, $factoryID){
.....
}
but I'm finding my method can get the first variable without an issue but not the second variable. Could anyone point me in the right direction please. Many thanks in advance.
The accepted answer will work for this particular issue, but will not work if the url ever changes. To access multiple variables in your controller, simply add to the function definition.
http://localhost/project/main/getproduct/24/45
Reference: CodeIgniter User Guide