WordPress and Codeigniter are popular PHP CMS and Framework.
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 fil…Read More
CodeIgniter – Security, XSS means cross-site scripting. CodeIgniter comes with XSS filtering security. This filter will prevent any malicious JavaScript code or any other code that att…Read More
CodeIgniter – Benchmarking, If you want to measure the time taken to execute a set of lines or memory usage, you can calculate it by using Benchmarking points in CodeIgniter. There is a se…Read More
CodeIgniter – Adding JS & CSS, Adding JavaScript and CSS (Cascading Style Sheet) file in CodeIgniter is very simple. You have to create JS and CSS folder in root directory and copy all the .j…Read More
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 the controller took to execute and ho…Read More
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 Helperâ for cookie …Read More
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 not need to be init…Read More
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 rendered state. Next time, when the server gets a re…Read More
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 for us. The redirect() functio…Read More