![]() |
Sergey Kornilov admin 4/14/2010 |
I would suggest to store field values in session variables using BeforeDisplay or BeforeProcess events. |
![]() |
ficcionista author 4/14/2010 |
I was just thinking about that... |
![]() |
ficcionista author 4/19/2010 |
Well, I've tried many ways to store session variables, 'before process' and 'before add' but I am still unable to store the comment variable
Of course I'll keep trying, but in the meantime if anyone has any ideas they'll be more than welcome.. |
![]() |
Sergey Kornilov admin 4/19/2010 |
ficc, global $dal; $rs = $dal->Table("YourTable")->Query("KeyColumn=" . $_REQUEST["editid1"],""); $data = db_fetch_array($rs); $_SESSION["reportID"] = $data["reportID"]; |
![]() |
ficcionista author 4/20/2010 |
Thanks Sergey, I've allready come to that conclusion. $button_name="Send Comment"; //Change this to whatever you want the button text to say...
global $conn;
|