InterviewSolution
Saved Bookmarks
| 1. |
How to pass multiple parameters to access into the view files? |
|
Answer» We can use $this->set(compact()) to PASS multiple PARAMETERS to ACCESS into the view file.Example $this->set(compact('variable1','variable2','variable3')); |
|