Codeigniter MongoDB Library Reference & Download: https://github.com/alexbilbie/codeigniter-mongodb-library/tree/v2 Using with CodeIgniter: Add the file Mongo_db.php to your /application/libraries folder. Add the file mongodb.php to your /application/config...
References: jQuery axaj for Codeigniter 2: http://kevinphillips.co.nz/news/jquery-axaj-codeigniter-2 CSRF Protection in CodeIgniter 2.0: A closer look: http://www.beheist.com/index.php/en/blog/csrf-protection-in-codeigniter-2-0-a-closer-look AJAX with CSRF Protection in Codeigniter 2.0: http://aymsystems.com/ajax-csrf-protection-codeigniter-20
HTML Purifier is a standards-compliant HTML filter library written in PHP. HTML Purifier will not only remove all malicious code (better known as XSS) with...
$this->input->xss_clean(); In codeigniter 2.0, you will need to modify $this->input->xss_clean() to $this->secuirty->xss_clean(). Otherwise, it won't work. Of course, don't forget to load 'security' library before...