1.

What Is Basic Codeigniter Url Structure?

Answer»

INSTEAD of USING 'query-string' approach, it uses a segment based approach.

Its STRUCTURE is as follows,

abc.com/CLASS/function/ID

class represents controller class that needs to be invoked.

function is the method that is called.

ID is any additional segment that is passed to controllers.

Instead of using 'query-string' approach, it uses a segment based approach.

Its structure is as follows,

abc.com/class/function/ID

class represents controller class that needs to be invoked.

function is the method that is called.

ID is any additional segment that is passed to controllers.



Discussion

No Comment Found