Posted by Angelo Zanetti on 06/07/05 17:23
Hi Alessandro
try this as well (Put these lines before and after your redirect/header
statement);
session_write_close();
header( "Location: ".$PHPcmd );
exit();
hope this helps
Angelo Zanetti
Z Logic
www.zlogic.co.za
Alessandro Rosa wrote:
>Hi to all,
>
>I got a problem while storing session variables.
>
><?php
>session_start();
>header( "Cache-control: private" );
>
>require_once("config.inc.php");
>
>////////////////////////////////////////////////////////////
>$_SESSION['session_psw'] = $_POST['txtPassword'];
>$_SESSION['session_user'] = $_POST['txtIdUtente'];
>
>////////////////////////////////////////////////////////////
>
>$PHPcmd = $GLOBALS['gestionale_path_name']."test/2.php" ;
>
>header( "Location: ".$PHPcmd );
>
>?>
>
>After the call to header(...), the values of session variables are lost.
>
>I think I should fix this up with some settings in my php.ini
>
>Could you help me, please?
>
>Alessandro Rosa
>
>
>
Navigation:
[Reply to this message]
|