in php, will sessions work on cookies disabled computers ? the answer is “no”. because, server cookie is a session or we can say that session is also a cookie on the server. for session to work, cookies on server as well as on client browser should be enabled. read the rest of this entry .. .. ..
Sessions in PHP
using sessions in php session variables hold information about one single user, and are available to all pages in one application. over internet to maintain state of the user we will use sessions, sessions are temporary, by a unique id web server will keep the user data in the web server with which user state can be maintained across the pages in the website. before we start using the session .. .. ..
