Thanks for the info.
I did try to use a session, even using a very simple example from a book, like this one:
<?php
session_start();
session_register("sess_var");
$sess_var="Hello World";
echo "The content of \$sess_var is $sess_var";
?>
However, I get the following error in a Microsoft alert box:
"php.exe has encountered a problem and needs to close. We are sorry for the inconvenience..."
followed by a choice to send or not send the error report to microsoft.
I did some reading and found out that the use of sessions works only if PHP was compiled with the --enable-trans-sid option. After searching and searching, I found this can only be done in a Unix-like environment. I'm developing in the Windows XP environment.
Do you have any idea why I can't start a session using the session_start() command in Windows?
I tried to find the answers myself for the last few days, but now I'm really stuck.
Please help.
Thanks
Alex