Welcome Guest, Not a member yet? Register   Sign In
How can I pass variables in a foreach loop into a view?
#2

[eluser]RobertSF[/eluser]
You can't pass that data as a variable because, when you say $this->load->view('popup', $data);, $data is not what it was when you built each row in the table. It's whatever it is at the moment.

Instead, hard-code the data into each link in your table. You can use an array structure instead of an array variable as an argument, like this

$this->load->view('popup', array('subtime' = > $r->Submitted));

That way, the $r->Submitted specific to each table row gets embedded in the array you pass to the view.


Messages In This Thread
How can I pass variables in a foreach loop into a view? - by El Forum - 10-03-2014, 08:14 AM
How can I pass variables in a foreach loop into a view? - by El Forum - 10-03-2014, 03:19 PM
How can I pass variables in a foreach loop into a view? - by El Forum - 10-03-2014, 07:28 PM
How can I pass variables in a foreach loop into a view? - by El Forum - 10-03-2014, 08:17 PM
How can I pass variables in a foreach loop into a view? - by El Forum - 10-03-2014, 09:56 PM
How can I pass variables in a foreach loop into a view? - by El Forum - 10-06-2014, 08:16 AM
How can I pass variables in a foreach loop into a view? - by El Forum - 10-06-2014, 05:00 PM
How can I pass variables in a foreach loop into a view? - by El Forum - 10-14-2014, 03:31 PM
How can I pass variables in a foreach loop into a view? - by El Forum - 10-15-2014, 06:29 AM
How can I pass variables in a foreach loop into a view? - by El Forum - 10-16-2014, 09:31 AM
How can I pass variables in a foreach loop into a view? - by El Forum - 10-16-2014, 05:48 PM



Theme © iAndrew 2016 - Forum software by © MyBB