Can I get the list_something on my url like http://localhost/some/index.php/list_something
?
And how do you call this kind of info? I know query string is like ?some=value&yet_some=some_value... but I don't know about the one I posted. :(
Printable View
Can I get the list_something on my url like http://localhost/some/index.php/list_something
?
And how do you call this kind of info? I know query string is like ?some=value&yet_some=some_value... but I don't know about the one I posted. :(
PHP Code:$_SERVER['PATH_INFO']
Thanks P