Archive

Posts Tagged ‘session’

PHP Session Array

Oct 21st, 2009

In beginning, programmer think whether they can store array or not in PHP session.
Yes, you can store array in php session.

PHP Session : Is Session Set?

Oct 9th, 2009

Session is very important in PHP development path. Lets start to learn a little about session in PHP.
How do you know whether session is set or not!
PHP has a session_id() function to tell you if session is set or not. If no session has started then session_id() will return empty (“”) string. If session [...]