programming faqs interview questions tech technical educational freshers guide preparation interviews hr telephonic
try another color:
try another fontsize: 60% 70% 80% 90%
Programming FAQs

How to turn on session support in php?

We can turn session support

We can turn session support in two ways,

Set session.auto_start = 1 in php.ini file of your php installation this enables the session support for your entire site.

Call session_start() funtion.

This enable the session in that page, this should be a first statement in that page.