C
|
cgphp 12/30/2012 |
The primary key is only availabe after the record has been added. You need some sort of logic based on session variables. |
B
|
bussb author 1/7/2013 |
OK, so using the PHP Expression option I have this now, but I am getting a Syntax error with the php expression below: $folder = "../files/".$_SESSION['SOrgID']"/tblEquipment";
|
C
|
cgphp 1/7/2013 |
$folder = "../files/" . $_SESSION['SOrgID'] . "/tblEquipment"; |