Forum Moderators: coopster
That all depends on how your server is configured for PHP sessions [php.net]. You may also want to consider upgrading that server if you can. You are a few (security) releases behind.
// Some people prefer passing multiple parameters to echo over concatenation.
echo 'This ', 'string ', 'was ', 'made ', 'with multiple parameters.', chr(10);
echo 'This ' . 'string ' . 'was ' . 'made ' . 'with concatenation.' . "\n";