Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
It seems that $_REQUEST is not available at the afteradd event. Is there a metod to post data from beforead event to afterad event?
Hi,$_REQUEST array does work in both BeforeAdd and AfterAdd events.Anyway you can use session variables to pass values between event handlers.I.e. put this into BeforeAdd event:
$_SESSION["field1"] = $values["field1"];
then use $_SESSION["field1"] in AfterAdd event.
then use $_SESSION["field1"] in AfterAdd event