I have a session which is created mostly, by perl scripts. The only php file I have is index.php.
Sessions work perfectly in perl but I am having trouble accessing 'sessionStartTime' using php.
Can any of you php whizz's give me a pointer please?
here is the code which I have already been helped with here and it seems to work fine with no errors in the logs but, it can't find 'sessionStartTime', which I know has been defined by the perl scripts.
Code:
<?php
session_start();
if(isset($_SESSION['sessionStartTime'])) {
$sessionStartTime = $_SESSION['sessionStartTime'];
echo "sessionStartTime = $sessionStartTime<br />";
} else {
echo "sessionStartime has not been defined";
}
bazz