Follow Me:

Saturday, 10 January 2015

mysql> desc codingslover; +----------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +----------+-------------+------+-----+---------+-------+ | ProjId | varchar(20) | NO | PRI | NULL | | | BranchId | int(11) | YES | | NULL | | | AddedOn | datetime | YES | | NULL | | | Status | int(11) | YES | | NULL | | +----------+-------------+------+-----+---------+-------+ 4...
How to resolved when Logged out sessions get restored by back button? When we log out the sessions , We clear the cookies in browser. But when we press the back button after logging out the session gets restored.  Link : http://www.codingslover.com/2015/01/How-to-resolved-when-Logged-out-sessions-get-restored-by-back-button.html Solution: header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1 header("Expires: Sat, 26...