I\'m building a Codeigniter application and I\'m trying my hardest to prevent SQL injections. I\'m using the Active Record method to construct all my queries. I know Active Rec
Active Record only escapes the data, nothing else. SQL injection is prevented by escaping. Then use validation on the forms with their validation class. Should take care of your issues. Here's the link for the other CodeIgniter security items: