sebbo2 Posted June 28, 2006 Share Posted June 28, 2006 Hello folks, I have the following problem… I have a small PHP script which uses session management (session_start ()). So far so well. Problem with renewed calls of the side I get evertime a NEW Session_Id, instead of using the old, which was already sent as Cookie to the Browser. The strange is however, I gave the Script to a friend, he had been running it ran it on his test server perfectly, means sessionID remains. Therefore it must have to do something with my Settings of the PHP.ini. I did not changed anything at the standard settings of the PHP.ini actually. Here is the small testscript: <?php session_start();if (!isset($_SESSION["zaehler"])){ $_SESSION["zaehler"]=0; }$_SESSION["zaehler"]++;?><html><head><title>Unbenanntes Dokument</title></head><body><a href="samepage.php?<?php print session_id()?>">next</a>Anzahl Seitenwechsel: <?php echo $_SESSION["zaehler"]."\n"; ?></body></html>Many thanks in advance for every hint and help. Link to comment https://forums.phpfreaks.com/topic/13092-sessions-php-konfigurieren/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.