Kod ateşleyici yazabilirsiniz:
$query = $this->db->query("YOUR QUERY");
foreach ($query->result() as $row)
{
echo $row->title;
echo $row->name;
echo $row->body;
}
i sorgu yöntemi parçası nesnesini döndürür sanırım. i düzeltmek am?
i ediyorsam, bunu nasıl nesnesini döndürür satırı yazın mı?
ne yani ben merak Yukarıdaki kod işlevsel olması için sorgu yöntemi içinde gibi görünüyor nasıl.
public function query($sql) {
// some db logic here with the $sql and saves the values to the properties (title, name and body)
return X
}
Diğer bir deyişle ile, X ne olmalıdır?