PHP Automatic Session Expire after X Minutes of Inactivity/Idle time Automatic session timeout/logout using php Session timeout is a notion and the only way you make you sure that no session ever will survive after X minutes of inactivity. Session timeout or Session expire depends on the server configuration or the relevant directives (session.gc_maxlifetime)…
Most of us (Web Developer) use JQuery during the development, if you are not aware about the jQuery or interested in any other JavaScript Library then below is just a very quick overview about the jQuery. “jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation,…
Below are some interview questions that usually asked during the technical interview if you are invited as a Sr. Developer. These are very simple but it is always advice to read/learn and prepare yourself for interview. These interview questions are just for checking your logic instead what you have done in your previous experience…
Magic Methods in PHP (PHP Magical Reserved Functions Starts with double underscore) According to me you all have heard about the PHP Magic methods. You have also used some of these like __autoload and __construct. Let’s have a quick view on magic methods, as sometimes it looks like it will hard to use these…
Difference between array_merge and array_combine in php Array Merge PHP: array_merge Merge one or more arrays Merges the elements of one or more arrays together so that the values of one are appended to the end of the previous one. If the input arrays have the same string keys, then the later value…
Search Engine Spider and User Agent Identification with “Ultimate User Agent Blacklist” A user-agent is software (a software agent) that is acting on behalf of a user. In many cases, a user-agent acts as a client in a network protocol used in communications within a client–server distributed computing system. For more information view…