PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
if all this doesn't work, check if session id "SID" is sent automatically for this you can check if sess_auto_trans_sissid in your php.ini file(it should look like) if it is is on, if not you must send the session id from one page to another using URL rewriting, like this for example
for links: <a href="yourpage.php?<?php echo SID;?>">go to that
page</a>
for forms: <form action="yourpage.php?<?php echo SID;?>" method="POST">
for redirection: header('Location: yourpage.php?'.SID);