次のコードを使用していますが、結果は1つだけです。codeigniterのすべての値を表示する方法
function group($id)
{
$this->db->select('groupId,groupName');
$this->db->from('groups');
$this->db->where('createdBy',$id);
$query = $this->db->get();
foreach($result=$query->row_array() as $row)
{
print_r($result);
}
}
データベースからすべての値を表示するにはどうすればよいですか。
foreachの { エコーします$ row->タイトル; } –