Posted by "Alessandro Rosa" on 06/06/05 17:59
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]
|