A controller often comprises of several functions and often the module’s logic demands passing data between the various functions of the Controller. This is a common enough scenario in many Codeigniter projects. In this tutorial, I will demonstrate how you could pass data between two functions within the same Controller in CodeIgniter. In addition, I will show this data in the View.
Here is what the Model looks like:
Model
function getResponse($gettingresponse) { $enrollresponse=$gettingresponse['sendresponse']; return $enrollresponse; }
The Controller is as follows:
Controller
public function Register() { $this->load->view('firstview'); $this->load->view('secondview'); if($_POST) { $gettingresponse=array( 'sendresponse'=>$_POST['source'], 'receiverresponse'=>$_POST['destination'] ); $registration_confirm=$this->systemModel->responselogin($gettingresponse); $resposeflag=$this->systemModel->getEmail($gettingresponse); $data['resposeflag']=$gettingresponsevalue; if($registration_confirm){ $this->token($data); } } $this->load->view('thirdview'); } public function token($data=array()) { $this->load->view('firstview'); $data['resposeflag']; $this->load->view('token',$data); $this->load->view('thirdview'); }
The following View shows the data that has been passed between the functions of the Controller.
You might be interested in: How To Pass Data From Controller To View In CodeIgniter
View
<?php echo form_input(array('name'=>'source','readonly'=>'true','value'=>$resposeflag)); ?>
Stop Wasting Time on Servers
Cloudways handle server management for you so you can focus on creating great apps and keeping your clients happy.
Conclusion
In this tutorial, I have discussed how to pass data from one function to another in a Controller. You could easily extend this idea within your Codeigniter projects built on any PHP Hosting. If you need help, do leave a comment below.
Shahzeb Ahmed
Shahzeb is a Digital Marketer with a Software Engineering background, works as a Community Manager — PHP Community at Cloudways. He is growth ambitious and aims to learn & share information about PHP & Laravel Development through practice and experimentation. He loves to travel and explore new ideas whenever he finds time. Get in touch with him at [email protected]