J
|
Jane 11/10/2008 |
Hi, $_SESSION["_Product_Details_mastertable"] = "MasterTableName"; $_SESSION["_Product_Details_masterkey1"] = $keys["Product_Number"]; header("Location: _Product_Details_add.php"); exit(); |
E
|
erago author 11/10/2008 |
Hi, I suppose you just need to redirect to the details record and save master key in the session variable. Here is a sample:
|
J
|
Jane 11/11/2008 |
Hi, echo "_Product_Details_mastertable: ".$_SESSION["_Product_Details_mastertable"]; echo "_Product_Details_masterkey1: ".$_SESSION["_Product_Details_masterkey1"];
|
E
|
erago author 11/12/2008 |
Hi, make sure $_SESSION variables are filled. For example print it in the Add page: Before process event: Also check that default value of Product_Number is set up as $_SESSION[$strTaleName."_masterkey1"] on the "Edit as" settings dialog on the Visual Editor tab.
echo "_Product_Details_mastertable: ".$_SESSION["_Product_Details_mastertable"]; echo "_Product_Details_masterkey1: ".$_SESSION["_Product_Details_masterkey1"];
|
J
|
Jane 11/13/2008 |
It's difficult to tell you what's happening without seeing actual files. |