Forum Moderators: coopster
There are a few bloggerware ones out there, and I'm wondering which one I should try.
the example I was given is:
before - in PHP
$result = mysql_query("SELECT * FROM tablename WHERE id = 5");
$result = $this->db->get_where('tablename', array('id' => 5))
To me this seems like a good thing, expecially if it has built-in parameterization to prevent SQL injection (which I do manually now, and it's a major PITA)