Hi my PHP session is lost when using a pagination script. can someone explain why this would happen? I tried putting session_start() at the top off all the paginate script file but that did not work.
session_start();
$_SESSION['user'] = $line['UserName'];
$_SESSION['pass'] = $line['Password'];
$_SESSION['session_key'] = $time_started.$secure_session_user.session_id();
$_SESSION['current_session'] = $line['UserName']."=".$_SESSION['session_key'];