Welcome Guest, Not a member yet? Register   Sign In
mysql_fetch_array implementation in DB Class?
#2

[eluser]PoWah[/eluser]
Read this: http://ellislab.com/codeigniter/user-gui...sults.html

Generally, you are talking about
Code:
$query = $this->db->query("YOUR QUERY");
foreach ($query->result_array() as $row)
{
   echo $row['title'];
   echo $row['name'];
   echo $row['body'];
}


Messages In This Thread
mysql_fetch_array implementation in DB Class? - by El Forum - 09-10-2007, 02:57 AM
mysql_fetch_array implementation in DB Class? - by El Forum - 09-10-2007, 03:36 AM
mysql_fetch_array implementation in DB Class? - by El Forum - 09-10-2007, 04:55 AM



Theme © iAndrew 2016 - Forum software by © MyBB