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

[eluser]cahva[/eluser]
Thats your problem there. You will have to feed the dropdown an array I showed you in my last post. Instead this is the array you are now sending to dropdown:
Code:
$teams = array(
    'Australia',
    'Bangladesh'
);
It needs key and value. So change your model to this:
Code:
function select_teams()
{
    $tmp = $this->db->get('teams')->result_array();
    
    $teams = array();
    
    if ($tmp)
    {
        foreach ($tmp as $team)
        {
            $teams[$team] = $team;
        }
    }
    
    return $teams;
}


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