From af368e1f1a776247b10c4ae25d879b6e6afadfe0 Mon Sep 17 00:00:00 2001
From: Derek Jones
In many databases it is advisable to protect table and field names - for example with backticks in MySQL. Active Record queries are automatically protected, however if you need to manually protect an identifier you can use:
-$this->db->protect_identifier('table_name');
$this->db->protect_identifiers('table_name');
It's a very good security practice to escape your data before submitting it into your database. CodeIgniter has two functions that help you do this:
-- cgit v1.2.3-24-g4f1b