0 votes
in CodeIgniter by
edited by

What is the basic CodeIgniter URL structure?

🔗Source: CodeIgniter Interview Questions and Answers

🔗Source: JAVA Interview Questions and Answers

1 Answer

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

Its structure is as follows,

abc.com/class/function/ID  

The class represents a controller class that needs to be invoked.

The function is the method that is called.

ID is an additional segment that is passed to controllers.

Related questions

0 votes
asked Dec 25, 2020 in CodeIgniter by SakshiSharma
0 votes
asked Dec 30, 2020 in CodeIgniter by SakshiSharma
...