[eluser]miky4e[/eluser]
hello,
I have a problem with uri->segment() object in my web application.
This is my url
Code:
/index.php/account/d41d8cd98f00b204e9800998ecf8427e
Where account is class Account extends Controller and index() function get uri element... but, doesn't work!
Code:
404 Page Not Found
The page you requested was not found.
This is my error: 404 not found!?!
For simple example, this is my code:
Code:
function index()
{
if($this->uri->segment(2) == 'd41d8cd98f00b204e9800998ecf8427e')
{
echo "Ok";
}
}
Where is the problem???
Thanks
PS. I wanna comparate session_id (in login file) with account/session_id in account class