CodeIgniter Forums
URI Class CodeIgniter 1.7.2 - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: URI Class CodeIgniter 1.7.2 (/showthread.php?tid=24145)



URI Class CodeIgniter 1.7.2 - El Forum - 11-01-2009

[eluser]codeworxx[/eluser]
Dear again Guys,

i have a problem with the CodeIgniter URI Class.

In the UserGuide theres a notice, that the Class is automaticall initalized by the System, but when i create a
Code:
application/controller/listings.php
with
Code:
class Listings extends Controller
{
    function listings()
    {
        echo $this->uri->segement(2);
    }
}
I get an Error, "Undefined property: Listings::$uri" ????

I want to open the URL: index.php/listings/computer

Whats wrong?

Thanks,
Sascha


URI Class CodeIgniter 1.7.2 - El Forum - 11-01-2009

[eluser]codeworxx[/eluser]
Okay, Problem solved by myself. Thank you!