How To Pass Data From Controller To View In CodeIgniter

How To Pass Data From Controller To View In CodeIgniter


A
view is webpage that displays all the elements of the UI. In many cases, view is often a fragment of page (such as header, footer, widget areas and sidebars). In many cases, views can be embedded in other views. One important aspect of views is that views could not be called directly. You need to load the views through a controller. In this tutorial, I will highlight the simple, and yet very important process of how to pass data in CodeIgniter.

pass data in codeigniter from controller to view

Create a View

Create a new text file and name it cwblogview.php. Save this file in application/views/ directory. Open the file and add the following code to it:

Load the View

Loading a view is usually executed through the following syntax:
where ‘name’ is the name of the view
Noe create a controller with the name Blog.php.  This controller will contain the method for loading the view:
Once you have created the controller, the URL for the view would be:
Your-domain.com/index.php/blog/

Load Multiple Views

Within a controller, CodeIgniter could handle multiple calls to the view ($this->load->view()). Check out the following code:

Sort Views in Subfolders

It is easy to sort views within subfolders:
$this->load->view(‘directory_name/file_name’);

Add Dynamic Data to Views

The usual route of data transfer from controller to view is through an array or an object. The usual case is that the array or the object is passed as the second parameter of the view load method (something like the following):
The controller would look like this:
This is what the the view file would look like:

Create the Loops

Notice that the data array that is passed to the view files could be both simple variables and multi-dimensional arrays. In the case of multi-dimensional arrays, you could setup loops to generate multiple rows. For this, add the following code in the controller:
Next, open up the view file and create a loop:

Returning View as Data

The behavior of this method could be further customized through an optional third parameter. Using this parameter returns data as a string instead of sending it to the browser. This is important if you need to have a dataset for processing. Setting the third parameter to TRUE will return the data. The default behavior is FALSE that sends it to the browser.
Using the third parameter, the syntax would be:

Conclusion

In this tutorial I have discussed how to pass data from controller to view in CodeIgniter. The process is very simple and you could easily render views through the controller.
If you need help, you could add a comment below describing your issue. I will get back to you ASAP!

Comments