CodeIgniter Forums
Set variable on $this->input->post() function - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: Best Practices (https://forum.codeigniter.com/forumdisplay.php?fid=12)
+--- Thread: Set variable on $this->input->post() function (/showthread.php?tid=67298)



Set variable on $this->input->post() function - rupamhazra - 02-07-2017

Hi,

I want to set array of data  on $this->input->post() like $_POST variable.How can i do this??


RE: Set variable on $this->input->post() function - skunkbad - 02-07-2017

(02-07-2017, 06:35 AM)rupamhazra Wrote: Hi,

I want to set array of data  on $this->input->post() like $_POST variable.How can i do this??

Code:
$_POST = array(
 'foo' => 'bar'
);