Welcome Guest, Not a member yet? Register   Sign In
[SOLVED]Select box doubt
#10

[eluser]jrtashjian[/eluser]
If you're using PHP 4, modify this single line:
Code:
$tmp = $this->db->get('teams')->result_array();

Into two different lines:
Code:
$tmp = $this->db->get('teams');
$tmp = $tmp->result_array();

Method chaining is only available in PHP5.


Messages In This Thread
[SOLVED]Select box doubt - by El Forum - 10-07-2010, 05:52 AM
[SOLVED]Select box doubt - by El Forum - 10-07-2010, 07:55 AM
[SOLVED]Select box doubt - by El Forum - 10-07-2010, 10:31 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 12:46 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 02:33 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 02:53 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 03:21 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 04:06 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 04:30 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 04:42 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 04:49 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 04:52 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 05:32 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 02:14 PM



Theme © iAndrew 2016 - Forum software by © MyBB