Security is always a primary agenda of application development. CSRF (Cross-Site Request Forgery) token is one of a very common security technique we use for malicious attacks. A common PHP Framework like CodeIgnitor also has that feature. From CI v2.0 it has been introduced. We need to follow some steps to use the automated […]
Alternative to the Deprecated PHP “each” Function
Recently I have encountered an issue with my old codes. Those were running just fine earlier. Issue occurs while my server updated its PHP version to 7.2. Actually, this is common, with up-gradation to server configurations some old functions get deprecated, and in my case, it was PHP “each” function. With PHP version 7.2 “each” […]