Hi Tanya,
Well the trouble here is because your call to session_start() encountered an error, session data not found. When you encoutered the first error, the preceeding errors of headers already sent are encountered because of PHP's output of the first error. SO really the last three errors are irrelevant.
The script is complaining that the session data doesn't exist... and the file path looks a bit screwy.. forward slash / tmp \ backslash session file. Check the session.save_path directive in php.ini and tht PHP has read/write access to the directory. The default configuration should give PHP write access to the tmp directory.
Have you set up custom session handlers? I do hate WYSIWYG editors.. using them sometimes leaves you in the dark as to what's going on under the hood.
So you either need to create the tmp directory with read/write access. Or define the file path in php.ini. under the session.save_path directive. The default should be C:\PHP\sessiondata Or drive letter whereever PHP is installed. To find the php.ini file look in the C:\Windows directory on a Win32 system and open it with a notepad like editor.
If you do not see this directive in the file, then add it as follows:
session.save_path = C:\PHP\sessiondata
Notice this is not delimited by quotes. Again setting file permissions is just as important as the file path.
Also See:
http://www.php.net/ini_set
: )
Rich
:::::::::::::::::::::::::::::::::
Smiling Souls
http://www.smilingsouls.net
:::::::::::::::::::::::::::::::::