Greetings.
CodIgniter I just had begin with codeigniter.
In the view I have a link as follows:
anchor (‘videostore/movie/1 ...)
All in localhost.
When I push the link goes to: localhost/work/index.php/videostore/movie/1
All right.
But when I collect parameters;
If I put:
$ value1 = $ this-> uri-> rsegment (1), I get nothing
$ value2 = $ this-> uri-> rsegment (2), I get index
$ value3 = $ this-> uri-> rsegment (3), I get nothing
$ value3 = $ this-> uri-> rsegment (3), I get videostore
$value…. Everything else is empty
If I put:
echo $ this-> uri-> total_rsegments ();
I get only 2. And the rest does not appear and I’m interested in collecting movie and 1.
