Bir sorgunun ilk satırdan bir alan alma

0 Cevap php

Ben CodeIgniter'ın Active Record Sınıf kullanıyorum. Yani sorgu şöyle:

$query = $this->db->get_where('Table', array('field' => $value));

Now, what's the fastest way to get a field from the first row? Would $query->first_row->field; work?

Teşekkürler!

0 Cevap