CodeIgniter – Security
This topic is about CodeIgniter - Security. XSS Prevention XSS means cross-site scripting. CodeIgniter comes with XSS filtering security. This filter will prevent any malicious JavaScript code or any other…
This topic is about CodeIgniter - Security. XSS Prevention XSS means cross-site scripting. CodeIgniter comes with XSS filtering security. This filter will prevent any malicious JavaScript code or any other…
This chapter is about CodeIgniter - Internationalization. The language class in CodeIgniter provides an easy way to support multiple languages for internationalization. To some extent, we can use different language…
This topic is about CodeIgniter - Adding JS & CSS. Adding JavaScript and CSS (Cascading Style Sheet) file in CodeIgniter is very simple. You have to create JS and CSS…
This topic is about CodeIgniter - Benchmarking. Setting Benchmark Points If you want to measure the time taken to execute a set of lines or memory usage, you can calculate…
This topic is about CodeIgniter - Application Profiling. When building a web application, we are very much concerned about the performance of the website in terms of how much time…
This topic is about CodeIgniter - Page Redirection. While building web application, we often need to redirect the user from one page to another page. CodeIgniter makes this job easy…
This topic is about CodeIgniter - Page Caching. Caching a page will improve the page load speed. If the page is cached, then it will be stored in its fully…
This topic is about CodeIgniter - Common Functions. CodeIgniter library functions and helper functions need to be initialized before they are used but there are some common functions, which do…
This topic is about CodeIgniter - Cookie Management. Cookie is a small piece of data sent from web server to store on client’s computer. CodeIgniter has one helper called “Cookie…
This topic is about CodeIgniter - Tempdata. In some situations, where you want to remove data stored in session after some specific time-period, this can be done using tempdata functionality in CodeIgniter.…