Hi,
I have enabled the use of query strings by setting the config variable "enable_query_strings" = TRUE.
I understand that in order to invoke method X of class Y, my URL will look like this:
http://localhost/ci_sample/index.php?c=Y&m=X
However, what if my function signature for X is
function X($param1, $param2) {...}
how should my query string look like in order to pass two parameters to X()?
(Btw, I have decided to use this approach, because I couldn't find an article/forum on mod_rewrite for removing index.php that would work on my machine. I'm using XAMPP on a Windows platform)
Regards,
Erwin