CodeIgniter Forums
User Guide: Missing Text on Active Record Class Page in Docs - 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: User Guide: Missing Text on Active Record Class Page in Docs (/showthread.php?tid=6848)



User Guide: Missing Text on Active Record Class Page in Docs - El Forum - 03-13-2008

[eluser]kirkaracha[/eluser]
The comment in the multiple function calls example for $this->db->where(); is missing the word "name." The example is:

Code:
$this->db->where('name', $name);
$this->db->where('title', $title);
$this->db->where('status', $status);

// WHERE = 'Joe' AND title = 'boss' AND status = 'active'

The last line should be:
Code:
// WHERE name = 'Joe' AND title = 'boss' AND status = 'active'



User Guide: Missing Text on Active Record Class Page in Docs - El Forum - 03-14-2008

[eluser]Derek Allard[/eluser]
thanks. got it.