This topic is locked

$_SESSION[$strTableName.'_masterkey']; not working

7/18/2007 2:45:16 PM
PHPRunner General questions
M
mounir author

hello all :

here is my problem i try to execute the :
$param_id = $_SESSION[$strTableName."_masterkey"];
but the var $param_id is empty !!

J
Jane 7/19/2007

Hi,
try to use following code:

global $strTableName;

$param_id = $_SESSION[$strTableName."_masterkey1"];

M
mounir author 7/19/2007

Yeah it worked !!