PDA

View Full Version : php sessions


shooze
11-14-2007, 01:41 PM
Hi-

I've never coded sessions before. I am not sure if my host even has it enabled for me to use. Is there a quick test to see if sessions will work on my webhost server :confused:

BigFan
11-14-2007, 02:42 PM
Try this :

testsessions.php
<?php
session_start();
echo session_id();
?>

If you get a session response your in business. If not it is possible that sessions are not working at all (for example, the session save path folder might not exist.) Check your web server error logs to find out what errors might be occurring.