データベースから CodeIgniter へのクエリを表示できません。
私のテーブルには「、、」がid
ありdescription
ますdate_stamp
。のみを取得したいだけですdate_stamp
。
これが私のコードです:
モデル
public function get_holidays()
{
$this->db->select('date_stamp');
$this->db->from('holidays');
$query = $this->db->get();
if($query->num_rows() > 0)
{
foreach ($query->result() as $row)
{
$data[] = $query->row();
}
}
else
{
$data = "";
}
return $data;
}
コントローラ:
$holidays = $this->emp->get_holidays();
//the result should be like this
//$holidays=array("2013-09-20","2013-09-23", "2013-09-25");
foreach($holidays as $holiday){
//
echo $holiday['date_stamp'];
}