从杂货库中的mysql数据库中获取列

时间:2018-07-04 11:48:05

标签: php grocery-crud

我想用杂货店数据库中的数据库修改后的列数据创建一个下拉列表。我的代码正在

$this->db->select($column);
$temp = $this->db->get($table);
$temp1 = array();
foreach ($temp as $row)
{
    $temp1[] = $row[$column];
}

但是此代码不起作用。我收到错误undefined index $column错误。我在哪里犯错?我无法使用杂货杂货set_relation api,因为我需要先修改数据库列数据,然后再将其传递到下拉列表中。

1 个答案:

答案 0 :(得分:0)

我在代码中犯了一个错误。杂货杂货遵循以下工作代码

public function get_column($table, $column, $condition=null, $value=null)
{
    $this->db->select($column);
    if ($condition != null)
    {
        $this->db->where($condition, $value);
    }
    $temp = $this->db->get($table);

    $temp_array = array();
    foreach ($temp->result() as $row)
    {
        $temp_array[] = $row->$column;
    }
    return $temp_array;
}