InterviewSolution
Saved Bookmarks
| 1. |
Explain how to set and get config item value in Codeigniter? |
|
Answer» To SET CONFIG VALUE $this->config->set_item('mainURL','bestinterviewquestion.com'); we can use this. To GET config value $this->config->set_item('mainURL'); we can use this. |
|