CodeIgniter Forums
Error while fetching data from the database - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Error while fetching data from the database (/showthread.php?tid=33401)



Error while fetching data from the database - El Forum - 08-25-2010

[eluser]oldrock[/eluser]
Hi..,

i m getting the following error while executing the below code

function get_header()
{


$query=$this->db->query("SELECT description FROM tournament");
if ($query->num_rows() > 0)
{
foreach ($query->result() as $row)
{


echo $row;
}
}
}

A PHP Error was encountered

Severity: 4096

Message: Object of class stdClass could not be converted to string

please help me to solve my problem thanks in advance


Error while fetching data from the database - El Forum - 08-25-2010

[eluser]Clooner[/eluser]
Read the manual!
Code:
echo $row->description;